From e13d1d0cf2548c172e3c670ef7fe1b35befbb755 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Sun, 7 Jul 2013 19:51:24 +0200 Subject: [PATCH 001/164] Add possibility to read/write plural translations --- l10n/l10n.pl | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index b07d6d686bc..8d13ec29a37 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -39,7 +39,7 @@ sub crawlFiles{ foreach my $i ( @files ){ next if substr( $i, 0, 1 ) eq '.'; next if $i eq 'l10n'; - + if( -d $dir.'/'.$i ){ push( @found, crawlFiles( $dir.'/'.$i )); } @@ -100,11 +100,17 @@ if( $task eq 'read' ){ foreach my $file ( @totranslate ){ next if $ignore{$file}; - my $keyword = ( $file =~ /\.js$/ ? 't:2' : 't'); + my $keywords = ''; + if( $file =~ /\.js$/ ){ + $keywords = '--keyword=t:2 --keyword=tp:2,3'; + } + else{ + $keywords = '--keyword=t --keyword=tp:1,2'; + } my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; - `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; + `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } chdir( $whereami ); } @@ -118,7 +124,7 @@ elsif( $task eq 'write' ){ print " Processing $app\n"; foreach my $language ( @languages ){ next if $language eq 'templates'; - + my $input = "${whereami}/$language/$app.po"; next unless -e $input; @@ -128,8 +134,18 @@ elsif( $task eq 'write' ){ my @strings = (); foreach my $string ( @{$array} ){ next if $string->msgid() eq '""'; - next if $string->msgstr() eq '""'; - push( @strings, $string->msgid()." => ".$string->msgstr()); + + # Do we use singular or plural? + if( defined( $string->msgstr_n() )){ + next if $string->msgstr_n()->{"0"} eq '""' || + $string->msgstr_n()->{"1"} eq '""'; + push( @strings, $string->msgid()." => ".$string->msgstr_n()->{"0"} ); + push( @strings, $string->msgid_plural()." => ".$string->msgstr_n()->{"1"} ); + } + else{ + next if $string->msgstr() eq '""'; + push( @strings, $string->msgid()." => ".$string->msgstr()); + } } next if $#strings == -1; # Skip empty files -- GitLab From 560839195e97abdaca4f8c144a6a760a0ab90c19 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Sun, 7 Jul 2013 20:06:14 +0200 Subject: [PATCH 002/164] make l10n libs capable of handling plural translations --- lib/l10n.php | 20 ++++++++++++++++++++ lib/l10n/string.php | 11 ++++++++--- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index d35ce5fed14..03528c22746 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -166,6 +166,26 @@ class OC_L10N{ return new OC_L10N_String($this, $text, $parameters); } + /** + * @brief Translating + * @param $text_singular String the string to translate for exactly one object + * @param $text_plural String the string to translate for n objects + * @param $count Integer Number of objects + * @param array $parameters default:array() Parameters for sprintf + * @return \OC_L10N_String Translation or the same text + * + * Returns the translation. If no translation is found, $text will be + * returned. %n will be replaced with the number of objects. + */ + public function tp($text_singular, $text_plural, $count, $parameters = array()) { + if($count == 1){ + return new OC_L10N_String($this, $text_singular, $parameters, $count); + } + else{ + return new OC_L10N_String($this, $text_plural, $parameters, $count); + } + } + /** * @brief Translating * @param $textArray The text array we need a translation for diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 8eef10071e6..1bef7330945 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -8,18 +8,23 @@ class OC_L10N_String{ protected $l10n; - public function __construct($l10n, $text, $parameters) { + public function __construct($l10n, $text, $parameters, $count = 1) { $this->l10n = $l10n; $this->text = $text; $this->parameters = $parameters; + $this->count = $count; } public function __toString() { $translations = $this->l10n->getTranslations(); + + $text = $this->text; if(array_key_exists($this->text, $translations)) { - return vsprintf($translations[$this->text], $this->parameters); + $text = $translations[$this->text]; } - return vsprintf($this->text, $this->parameters); + // Replace %n first (won't interfere with vsprintf) + $text = str_replace('%n', $this->count, $text); + return vsprintf($text, $this->parameters); } } -- GitLab From 4e214883d64acf4dc9cc3191780086d0a9dac60f Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Sun, 7 Jul 2013 20:26:09 +0200 Subject: [PATCH 003/164] Partly integrate plural translations into js --- core/js/js.js | 55 +++++++++++++++++++++++++++++++++------------------ 1 file changed, 36 insertions(+), 19 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 3904787c4e5..15cf1d286fa 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1,6 +1,6 @@ /** * Disable console output unless DEBUG mode is enabled. - * Add + * Add * define('DEBUG', true); * To the end of config/config.php to enable debug mode. * The undefined checks fix the broken ie8 console @@ -28,9 +28,11 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == * translate a string * @param app the id of the app for which to translate the string * @param text the string to translate + * @param vars (optional) FIXME + * @param count (optional) number to replace %n with * @return string */ -function t(app,text, vars){ +function t(app, text, vars, count){ if( !( t.cache[app] )){ $.ajax(OC.filePath('core','ajax','translations.php'),{ async:false,//todo a proper sollution for this without sync ajax calls @@ -46,7 +48,8 @@ function t(app,text, vars){ t.cache[app] = []; } } - var _build = function (text, vars) { + var _build = function (text, vars, count) { + // FIXME: replace %n with content of count return text.replace(/{([^{}]*)}/g, function (a, b) { var r = vars[b]; @@ -54,30 +57,44 @@ function t(app,text, vars){ } ); }; + var translation = text; if( typeof( t.cache[app][text] ) !== 'undefined' ){ - if(typeof vars === 'object') { - return _build(t.cache[app][text], vars); - } else { - return t.cache[app][text]; - } + translation = t.cache[app][text]; } - else{ - if(typeof vars === 'object') { - return _build(text, vars); - } else { - return text; - } + + if(typeof vars === 'object' || typeof count !== 'undefined' ) { + return _build(translation, vars, count); + } else { + return translation; } } t.cache={}; -/* +/** + * translate a string + * @param app the id of the app for which to translate the string + * @param text_singular the string to translate for exactly one object + * @param text_plural the string to translate for n objects + * @param count number to determine whether to use singular or plural + * @param vars (optional) FIXME + * @return string + */ +function tp(app, text_singular, text_plural, count, vars){ + if(count==1){ + return t(app, text_singular, vars, count); + } + else{ + return t(app, text_plural, vars, count); + } +} + +/** * Sanitizes a HTML string -* @param string +* @param s string * @return Sanitized string */ function escapeHTML(s) { - return s.toString().split('&').join('&').split('<').join('<').split('"').join('"'); + return s.toString().split('&').join('&').split('<').join('<').split('"').join('"'); } /** @@ -741,7 +758,7 @@ OC.get=function(name) { var namespaces = name.split("."); var tail = namespaces.pop(); var context=window; - + for(var i = 0; i < namespaces.length; i++) { context = context[namespaces[i]]; if(!context){ @@ -760,7 +777,7 @@ OC.set=function(name, value) { var namespaces = name.split("."); var tail = namespaces.pop(); var context=window; - + for(var i = 0; i < namespaces.length; i++) { if(!context[namespaces[i]]){ context[namespaces[i]]={}; -- GitLab From 4818e0062e5444a9b657a30001b6dbaca44413c7 Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 1 Jul 2013 23:47:59 +0200 Subject: [PATCH 004/164] General CSS cleanup --- apps/files/css/files.css | 2 +- core/css/styles.css | 56 +++++++++++++++++++++++---------- settings/css/settings.css | 4 +-- settings/templates/personal.php | 4 +-- 4 files changed, 44 insertions(+), 22 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f2ca1065eca..d7937692e6f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -114,7 +114,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } position:relative; width:100%; -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } -#select_all { float:left; margin:.3em 0.6em 0 .5em; } +#select_all { float:left; margin:.4em 0.6em 0 .5em; } #uploadsize-message,#delete-confirm { display:none; } /* File actions */ diff --git a/core/css/styles.css b/core/css/styles.css index 40a17a42876..7c82b55deff 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -19,17 +19,27 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #body-user #header, #body-settings #header { position:fixed; top:0; left:0; right:0; z-index:100; height:45px; line-height:2.5em; background:#1d2d44 url('../img/noise.png') repeat; - -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } -#body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em; - -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); -background:#1d2d44; /* Old browsers */ -background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ -background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ -background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ -background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ -background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ -background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ -filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ } + -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; + -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; + box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; +} + +#body-login #header { + margin: -2em auto 0; + text-align:center; + height:10em; + padding:1em 0 .5em; + -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); + -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); + background:#1d2d44; /* Old browsers */ + background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ + background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ + background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ + background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ + background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ + background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ + filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ +} #owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } .header-right { float:right; vertical-align:middle; padding:0.5em; } @@ -111,18 +121,24 @@ a.disabled, a.disabled:hover, a.disabled:focus { .primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary { border:1px solid #1d2d44; background:#35537a; color:#ddd; text-shadow:#000 0 -1px 0; - -moz-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; + -moz-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; + -webkit-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; + box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; } .primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover, .primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus { border:1px solid #1d2d44; background:#2d3d54; color:#fff; text-shadow:#000 0 -1px 0; - -moz-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; + -moz-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; + -webkit-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; + box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; } .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active { border:1px solid #1d2d44; background:#1d2d44; color:#bbb; text-shadow:#000 0 -1px 0; - -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; + -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; + -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; + box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; } @@ -132,7 +148,7 @@ a.disabled, a.disabled:hover, a.disabled:focus { #remember_login { margin:.8em .2em 0 1em; vertical-align:text-bottom; } .searchbox input[type="search"] { font-size:1.2em; padding:.2em .5em .2em 1.5em; background:#fff url('../img/actions/search.svg') no-repeat .5em center; border:0; -moz-border-radius:1em; -webkit-border-radius:1em; border-radius:1em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70);opacity:.7; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; margin-top:10px; float:right; } input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; } -#select_all{ margin-top:.4em !important;} +#select_all{ margin-top:.4em } /* CONTENT ------------------------------------------------------------------ */ #controls { @@ -333,10 +349,16 @@ li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; bac } #expanddiv a { display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70);opacity:.7; + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; + filter:alpha(opacity=70); + opacity:.7; } #expanddiv a img { margin-bottom:-3px; } - #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } + #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter:alpha(opacity=100); + opacity:1; + } /* VARIOUS REUSABLE SELECTORS */ diff --git a/settings/css/settings.css b/settings/css/settings.css index 3c406109a1f..d7b63891903 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -9,10 +9,10 @@ input#openid, input#webdav { width:20em; } /* PERSONAL */ /* Sync clients */ -.clientsbox { margin:12px; text-align:center; } +.clientsbox { margin:12px; } .clientsbox h1 { font-size:40px; font-weight:bold; margin:50px 0 20px; } .clientsbox h2 { font-size:20px; font-weight:bold; margin:35px 0 10px; } -.clientsbox center { margin-top:10px; } +.clientsbox .center { margin-top:10px; } #passworderror { display:none; } #passwordchanged { display:none; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d4396407525..e6d43a430fd 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -6,7 +6,7 @@ -
+ -- GitLab From 2f11f56d323cc7a559ecc42f521083301479920e Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 18 Apr 2013 18:28:03 +0200 Subject: [PATCH 005/164] Use !== and === in files_trashbin-app --- apps/files_trashbin/ajax/delete.php | 2 +- apps/files_trashbin/ajax/undelete.php | 2 +- apps/files_trashbin/index.php | 12 +++++------ apps/files_trashbin/js/trash.js | 20 +++++++++---------- apps/files_trashbin/lib/trash.php | 4 ++-- apps/files_trashbin/templates/index.php | 2 +- .../templates/part.breadcrumb.php | 2 +- apps/files_trashbin/templates/part.list.php | 10 +++++----- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 16c39ab3853..92361b65f63 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -13,7 +13,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 9d78f166765..e39004cc0d5 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -12,7 +12,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 6f1c364737e..7cb2832c9fe 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -24,7 +24,7 @@ if ($dir) { $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { - if ( $entryName != '.' && $entryName != '..' ) { + if ( $entryName !== '.' && $entryName !== '..' ) { $pos = strpos($dir.'/', '/', 1); $tmp = substr($dir, 0, $pos); $pos = strrpos($tmp, '.d'); @@ -54,13 +54,13 @@ foreach ($result as $r) { $i['timestamp'] = $r['timestamp']; $i['mimetype'] = $r['mime']; $i['type'] = $r['type']; - if ($i['type'] == 'file') { + if ($i['type'] === 'file') { $fileinfo = pathinfo($r['id']); $i['basename'] = $fileinfo['filename']; $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; } $i['directory'] = $r['location']; - if ($i['directory'] == '/') { + if ($i['directory'] === '/') { $i['directory'] = ''; } $i['permissions'] = OCP\PERMISSION_READ; @@ -68,9 +68,9 @@ foreach ($result as $r) { } function fileCmp($a, $b) { - if ($a['type'] == 'dir' and $b['type'] != 'dir') { + if ($a['type'] === 'dir' and $b['type'] !== 'dir') { return -1; - } elseif ($a['type'] != 'dir' and $b['type'] == 'dir') { + } elseif ($a['type'] !== 'dir' and $b['type'] === 'dir') { return 1; } else { return strnatcasecmp($a['name'], $b['name']); @@ -83,7 +83,7 @@ usort($files, "fileCmp"); $pathtohere = ''; $breadcrumb = array(); foreach (explode('/', $dir) as $i) { - if ($i != '') { + if ($i !== '') { if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) { $name = $match[1]; } else { diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 87dfea491e7..295bc695117 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -15,7 +15,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -42,7 +42,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -72,7 +72,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index == i) { + if (index === i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -111,7 +111,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -137,7 +137,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -170,9 +170,9 @@ $(document).ready(function() { function processSelection(){ var selected=getSelectedFiles(); - var selectedFiles=selected.filter(function(el){return el.type=='file'}); - var selectedFolders=selected.filter(function(el){return el.type=='dir'}); - if(selectedFiles.length==0 && selectedFolders.length==0) { + var selectedFiles=selected.filter(function(el){return el.type === 'file'}); + var selectedFolders=selected.filter(function(el){return el.type === 'dir'}); + if(selectedFiles.length === 0 && selectedFolders.length === 0) { $('#headerName>span.name').text(t('files','Name')); $('#modified').text(t('files','Deleted')); $('table').removeClass('multiselect'); @@ -182,7 +182,7 @@ function processSelection(){ $('.selectedActions').show(); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length==1){ + if(selectedFolders.length === 1){ selection+=t('files','1 folder'); }else{ selection+=t('files','{count} folders',{count: selectedFolders.length}); @@ -192,7 +192,7 @@ function processSelection(){ } } if(selectedFiles.length>0){ - if(selectedFiles.length==1){ + if(selectedFiles.length === 1){ selection+=t('files','1 file'); }else{ selection+=t('files','{count} files',{count: selectedFiles.length}); diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index b9d900dfab4..a74d03ea4c5 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -262,14 +262,14 @@ class Trashbin { $query = \OC_DB::prepare('SELECT `location`,`type` FROM `*PREFIX*files_trash`' . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user, $filename, $timestamp))->fetchAll(); - if (count($result) != 1) { + if (count($result) !== 1) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); return false; } // if location no longer exists, restore file in the root directory $location = $result[0]['location']; - if ($result[0]['location'] != '/' && + if ($result[0]['location'] !== '/' && (!$view->is_dir('files' . $result[0]['location']) || !$view->isUpdatable('files' . $result[0]['location']))) { $location = ''; diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 66ec36df867..371765fa69a 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -5,7 +5,7 @@
- +
t('Nothing in here. Your trash bin is empty!'))?>
diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 85bb16ffa2d..8ecab58e5c8 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -12,7 +12,7 @@ -
svg" +
svg" data-dir=''>
diff --git a/apps/files_trashbin/templates/part.list.php b/apps/files_trashbin/templates/part.list.php index 94a8eec9515..254b08dd36a 100644 --- a/apps/files_trashbin/templates/part.list.php +++ b/apps/files_trashbin/templates/part.list.php @@ -7,7 +7,7 @@ $name = \OCP\Util::encodePath($file['name']); $directory = \OCP\Util::encodePath($file['directory']); ?> ' @@ -22,14 +22,14 @@ data-dirlisting=0 > + style="background-image:url()" style="background-image:url()" > - + @@ -43,14 +43,14 @@ - + - + -- GitLab From 70b4f85911c0d1a774c6a446c44e4ec464abaee4 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 10 Jul 2013 02:36:43 +0200 Subject: [PATCH 006/164] Use isIgnoredDir() --- apps/files_trashbin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 7cb2832c9fe..2dbaefe7a78 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -24,7 +24,7 @@ if ($dir) { $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { - if ( $entryName !== '.' && $entryName !== '..' ) { + if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { $pos = strpos($dir.'/', '/', 1); $tmp = substr($dir, 0, $pos); $pos = strrpos($tmp, '.d'); -- GitLab From 18fc22b52bdf1d8372a6e9c602872c423ce50eff Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Tue, 16 Jul 2013 21:38:31 +0200 Subject: [PATCH 007/164] Allow several plural forms in l10n php files --- l10n/l10n.pl | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 8d13ec29a37..7694749dadf 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -102,10 +102,10 @@ if( $task eq 'read' ){ next if $ignore{$file}; my $keywords = ''; if( $file =~ /\.js$/ ){ - $keywords = '--keyword=t:2 --keyword=tp:2,3'; + $keywords = '--keyword=t:2 --keyword=n:2,3'; } else{ - $keywords = '--keyword=t --keyword=tp:1,2'; + $keywords = '--keyword=t --keyword=n:1,2'; } my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); @@ -137,10 +137,15 @@ elsif( $task eq 'write' ){ # Do we use singular or plural? if( defined( $string->msgstr_n() )){ - next if $string->msgstr_n()->{"0"} eq '""' || - $string->msgstr_n()->{"1"} eq '""'; - push( @strings, $string->msgid()." => ".$string->msgstr_n()->{"0"} ); - push( @strings, $string->msgid_plural()." => ".$string->msgstr_n()->{"1"} ); + my @variants = (); + my $identifier = $string->msgid()."::".$string->msgid_plural() + $identifier =~ s/"/_/g; + + foreach my $variant ( sort { $a <=> $b} keys( %{$string->msgstr_n()} )){ + push( @variants, $string->msgstr_n()->{$variant} ); + } + + push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"; } else{ next if $string->msgstr() eq '""'; -- GitLab From bb0c5bff5fc493dd24c2c9cbbf27986fd5098de1 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Tue, 16 Jul 2013 22:16:53 +0200 Subject: [PATCH 008/164] Add multiple plural forms to the php part --- core/js/js.js | 11 +++++------ lib/l10n.php | 34 ++++++++++++++++++++++++++++++---- lib/l10n/string.php | 9 ++++++++- 3 files changed, 43 insertions(+), 11 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 15cf1d286fa..37540bd15e7 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -33,7 +33,7 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == * @return string */ function t(app, text, vars, count){ - if( !( t.cache[app] )){ + if( !( t.cache[app] )) { $.ajax(OC.filePath('core','ajax','translations.php'),{ async:false,//todo a proper sollution for this without sync ajax calls data:{'app': app}, @@ -49,8 +49,7 @@ function t(app, text, vars, count){ } } var _build = function (text, vars, count) { - // FIXME: replace %n with content of count - return text.replace(/{([^{}]*)}/g, + return text.replace(/%n/g, count).replace(/{([^{}]*)}/g, function (a, b) { var r = vars[b]; return typeof r === 'string' || typeof r === 'number' ? r : a; @@ -62,7 +61,7 @@ function t(app, text, vars, count){ translation = t.cache[app][text]; } - if(typeof vars === 'object' || typeof count !== 'undefined' ) { + if(typeof vars === 'object' || count !== undefined ) { return _build(translation, vars, count); } else { return translation; @@ -79,8 +78,8 @@ t.cache={}; * @param vars (optional) FIXME * @return string */ -function tp(app, text_singular, text_plural, count, vars){ - if(count==1){ +function n(app, text_singular, text_plural, count, vars){ + if(count === 1) { return t(app, text_singular, vars, count); } else{ diff --git a/lib/l10n.php b/lib/l10n.php index 03528c22746..8348962cc10 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -176,13 +176,28 @@ class OC_L10N{ * * Returns the translation. If no translation is found, $text will be * returned. %n will be replaced with the number of objects. + * + * In case there is more than one plural form you can add a function + * "selectplural" in core/l10n/l10n-*.php + * + * Example: + * + * [...] + * 'selectplural' => function($i){return $i == 1 ? 0 : $i == 2 ? 1 : 2}, + * [...] */ - public function tp($text_singular, $text_plural, $count, $parameters = array()) { - if($count == 1){ - return new OC_L10N_String($this, $text_singular, $parameters, $count); + public function n($text_singular, $text_plural, $count, $parameters = array()) { + $identifier = "_${text_singular}__${text_plural}_"; + if(array_key_exists( $this->localizations, "selectplural") && array_key_exists($this->translations, $identifier)) { + return new OC_L10N_String( $this, $identifier, $parameters, $count ); } else{ - return new OC_L10N_String($this, $text_plural, $parameters, $count); + if($count === 1) { + return new OC_L10N_String($this, $text_singular, $parameters, $count); + } + else{ + return new OC_L10N_String($this, $text_plural, $parameters, $count); + } } } @@ -220,6 +235,17 @@ class OC_L10N{ return $this->translations; } + /** + * @brief get localizations + * @returns Fetch all localizations + * + * Returns an associative array with all localizations + */ + public function getLocalizations() { + $this->init(); + return $this->localizations; + } + /** * @brief Localization * @param $type Type of localization diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 1bef7330945..3cda5eab506 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -18,10 +18,17 @@ class OC_L10N_String{ public function __toString() { $translations = $this->l10n->getTranslations(); + $localizations = $this->l10n->getLocalizations(); $text = $this->text; if(array_key_exists($this->text, $translations)) { - $text = $translations[$this->text]; + if(is_array($translations[$this->text])) { + $id = $localizations["selectplural"]( $count ); + $text = $translations[$this->text][$id] + } + else{ + $text = $translations[$this->text]; + } } // Replace %n first (won't interfere with vsprintf) $text = str_replace('%n', $this->count, $text); -- GitLab From 69b175dbf9979af05a51a3b1d7e349c53a2a6d9d Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Tue, 16 Jul 2013 22:25:19 +0200 Subject: [PATCH 009/164] Fix two bugs in l10n.pl --- l10n/l10n.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 7694749dadf..9e5caa6badb 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -138,14 +138,14 @@ elsif( $task eq 'write' ){ # Do we use singular or plural? if( defined( $string->msgstr_n() )){ my @variants = (); - my $identifier = $string->msgid()."::".$string->msgid_plural() + my $identifier = $string->msgid()."::".$string->msgid_plural(); $identifier =~ s/"/_/g; foreach my $variant ( sort { $a <=> $b} keys( %{$string->msgstr_n()} )){ push( @variants, $string->msgstr_n()->{$variant} ); } - push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"; + push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"); } else{ next if $string->msgstr() eq '""'; -- GitLab From fb976000914e291dce5d2ab61980149e8cec1a98 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Tue, 16 Jul 2013 22:27:55 +0200 Subject: [PATCH 010/164] Fix an error jenkins found --- lib/l10n/string.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 3cda5eab506..5b9dbaee8a2 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -24,7 +24,7 @@ class OC_L10N_String{ if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { $id = $localizations["selectplural"]( $count ); - $text = $translations[$this->text][$id] + $text = $translations[$this->text][$id]; } else{ $text = $translations[$this->text]; -- GitLab From 62ce3a5613a273c9208f272728ae5002d43d5096 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 08:32:38 +0100 Subject: [PATCH 011/164] Only close db connection when disconnecting, keep the connection object --- lib/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db.php b/lib/db.php index e70d66fc2ba..44d77bce80e 100644 --- a/lib/db.php +++ b/lib/db.php @@ -380,8 +380,8 @@ class OC_DB { public static function disconnect() { // Cut connection if required if(self::$connection) { - self::$connection=false; - self::$DOCTRINE=false; + self::$connection->close(); + self::$preparedQueries = array(); } return true; -- GitLab From 66a215651badf8472e9922b7591cba3cfe9ce333 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 08:19:49 +0100 Subject: [PATCH 012/164] Create DB Connection wrapper and DB\Adapter* classes --- lib/db.php | 6 +++ lib/db/adapter.php | 17 ++++++++ lib/db/adapteroci8.php | 13 ++++++ lib/db/adapterpgsql.php | 13 ++++++ lib/db/adaptersqlite.php | 13 ++++++ lib/db/adaptersqlsrv.php | 13 ++++++ lib/db/connection.php | 88 ++++++++++++++++++++++++++++++++++++++++ 7 files changed, 163 insertions(+) create mode 100644 lib/db/adapter.php create mode 100644 lib/db/adapteroci8.php create mode 100644 lib/db/adapterpgsql.php create mode 100644 lib/db/adaptersqlite.php create mode 100644 lib/db/adaptersqlsrv.php create mode 100644 lib/db/connection.php diff --git a/lib/db.php b/lib/db.php index 44d77bce80e..95145fb7c50 100644 --- a/lib/db.php +++ b/lib/db.php @@ -129,6 +129,7 @@ class OC_DB { 'path' => $datadir.'/'.$name.'.db', 'driver' => 'pdo_sqlite', ); + $connectionParams['adapter'] = '\OC\DB\AdapterSqlite'; break; case 'mysql': $connectionParams = array( @@ -140,6 +141,7 @@ class OC_DB { 'charset' => 'UTF8', 'driver' => 'pdo_mysql', ); + $connectionParams['adapter'] = '\OC\DB\Adapter'; break; case 'pgsql': $connectionParams = array( @@ -150,6 +152,7 @@ class OC_DB { 'dbname' => $name, 'driver' => 'pdo_pgsql', ); + $connectionParams['adapter'] = '\OC\DB\AdapterPgSql'; break; case 'oci': $connectionParams = array( @@ -163,6 +166,7 @@ class OC_DB { if (!empty($port)) { $connectionParams['port'] = $port; } + $connectionParams['adapter'] = '\OC\DB\AdapterOCI8'; break; case 'mssql': $connectionParams = array( @@ -174,10 +178,12 @@ class OC_DB { 'charset' => 'UTF8', 'driver' => 'pdo_sqlsrv', ); + $connectionParams['adapter'] = '\OC\DB\AdapterSQLSrv'; break; default: return false; } + $connectionParams['wrapperClass'] = 'OC\DB\Connection'; try { self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); } catch(\Doctrine\DBAL\DBALException $e) { diff --git a/lib/db/adapter.php b/lib/db/adapter.php new file mode 100644 index 00000000000..c62e35495cd --- /dev/null +++ b/lib/db/adapter.php @@ -0,0 +1,17 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\DB; + +class Adapter { + protected $conn; + + public function __construct($conn) { + $this->conn = $conn; + } +} diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php new file mode 100644 index 00000000000..7ffff4909e7 --- /dev/null +++ b/lib/db/adapteroci8.php @@ -0,0 +1,13 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterOCI8 extends Adapter { +} diff --git a/lib/db/adapterpgsql.php b/lib/db/adapterpgsql.php new file mode 100644 index 00000000000..d3b09357c0a --- /dev/null +++ b/lib/db/adapterpgsql.php @@ -0,0 +1,13 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterPgSql extends Adapter { +} diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php new file mode 100644 index 00000000000..0b8107ac53e --- /dev/null +++ b/lib/db/adaptersqlite.php @@ -0,0 +1,13 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterSqlite extends Adapter { +} diff --git a/lib/db/adaptersqlsrv.php b/lib/db/adaptersqlsrv.php new file mode 100644 index 00000000000..281daf81d17 --- /dev/null +++ b/lib/db/adaptersqlsrv.php @@ -0,0 +1,13 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterSQLSrv extends Adapter { +} diff --git a/lib/db/connection.php b/lib/db/connection.php new file mode 100644 index 00000000000..5466609e671 --- /dev/null +++ b/lib/db/connection.php @@ -0,0 +1,88 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\DB; +use Doctrine\DBAL\Driver; +use Doctrine\DBAL\Configuration; +use Doctrine\DBAL\Cache\QueryCacheProfile; +use Doctrine\Common\EventManager; + +class Connection extends \Doctrine\DBAL\Connection { + protected $table_prefix; + protected $sequence_suffix; + + protected $adapter; + + /** + * Initializes a new instance of the Connection class. + * + * @param array $params The connection parameters. + * @param Driver $driver + * @param Configuration $config + * @param EventManager $eventManager + */ + public function __construct(array $params, Driver $driver, Configuration $config = null, + EventManager $eventManager = null) + { + if (!isset($params['adapter'])) { + throw new Exception('adapter not set'); + } + parent::__construct($params, $driver, $config, $eventManager); + $this->adapter = new $params['adapter']($this); + } + + /** + * Prepares an SQL statement. + * + * @param string $statement The SQL statement to prepare. + * @return \Doctrine\DBAL\Driver\Statement The prepared statement. + */ + public function prepare( $statement, $limit=null, $offset=null ) { + // TODO: prefix + // TODO: limit & offset + // TODO: prepared statement cache + return parent::prepare($statement); + } + + /** + * Executes an, optionally parameterized, SQL query. + * + * If the query is parameterized, a prepared statement is used. + * If an SQLLogger is configured, the execution is logged. + * + * @param string $query The SQL query to execute. + * @param array $params The parameters to bind to the query, if any. + * @param array $types The types the previous parameters are in. + * @param QueryCacheProfile $qcp + * @return \Doctrine\DBAL\Driver\Statement The executed statement. + * @internal PERF: Directly prepares a driver statement, not a wrapper. + */ + public function executeQuery($query, array $params = array(), $types = array(), QueryCacheProfile $qcp = null) + { + // TODO: prefix + return parent::executeQuery($query, $params, $types, $qcp); + } + + /** + * Executes an SQL INSERT/UPDATE/DELETE query with the given parameters + * and returns the number of affected rows. + * + * This method supports PDO binding types as well as DBAL mapping types. + * + * @param string $query The SQL query. + * @param array $params The query parameters. + * @param array $types The parameter types. + * @return integer The number of affected rows. + * @internal PERF: Directly prepares a driver statement, not a wrapper. + */ + public function executeUpdate($query, array $params = array(), array $types = array()) + { + // TODO: prefix + return parent::executeUpdate($query, $params, $types); + } +} -- GitLab From cd98ff1eafabf5b10ff67594b65d979a943afe09 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 08:19:49 +0100 Subject: [PATCH 013/164] Move db prefix handling to Connection wrapper --- lib/db.php | 20 +++++--------------- lib/db/connection.php | 12 ++++++++++-- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/lib/db.php b/lib/db.php index 95145fb7c50..a3233706109 100644 --- a/lib/db.php +++ b/lib/db.php @@ -57,7 +57,6 @@ class OC_DB { static private $DOCTRINE=null; static private $inTransaction=false; - static private $prefix=null; static private $type=null; /** @@ -184,6 +183,7 @@ class OC_DB { return false; } $connectionParams['wrapperClass'] = 'OC\DB\Connection'; + $connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" ); try { self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); } catch(\Doctrine\DBAL\DBALException $e) { @@ -353,8 +353,7 @@ class OC_DB { return $row['id']; } else if( $type === 'mssql') { if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $table = str_replace( '*PREFIX*', $prefix, $table ); + $table = self::$connection->replaceTablePrefix( $table ); } return self::$connection->lastInsertId($table); } @@ -367,9 +366,8 @@ class OC_DB { return self::$connection->lastInsertId($table); } else { if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); - $table = str_replace( '*PREFIX*', $prefix, $table ).$suffix; + $table = self::$connection->replaceTablePrefix( $table ).$suffix; } $result = self::$connection->lastInsertId($table); } @@ -443,8 +441,7 @@ class OC_DB { */ public static function insertIfNotExist($table, $input) { self::connect(); - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $table = str_replace( '*PREFIX*', $prefix, $table ); + $table = self::$connection->replaceTablePrefix( $table ); if(is_null(self::$type)) { self::$type=OC_Config::getValue( "dbtype", "sqlite" ); @@ -508,15 +505,11 @@ class OC_DB { */ private static function processQuery( $query ) { self::connect(); - // We need Database type and table prefix + // We need Database type if(is_null(self::$type)) { self::$type=OC_Config::getValue( "dbtype", "sqlite" ); } $type = self::$type; - if(is_null(self::$prefix)) { - self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); - } - $prefix = self::$prefix; // differences in escaping of table names ('`' for mysql) and getting the current timestamp if( $type == 'sqlite' || $type == 'sqlite3' ) { @@ -541,9 +534,6 @@ class OC_DB { $query = self::fixLimitClauseForMSSQL($query); } - // replace table name prefix - $query = str_replace( '*PREFIX*', $prefix, $query ); - return $query; } diff --git a/lib/db/connection.php b/lib/db/connection.php index 5466609e671..40809330da6 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -14,7 +14,6 @@ use Doctrine\Common\EventManager; class Connection extends \Doctrine\DBAL\Connection { protected $table_prefix; - protected $sequence_suffix; protected $adapter; @@ -32,8 +31,12 @@ class Connection extends \Doctrine\DBAL\Connection { if (!isset($params['adapter'])) { throw new Exception('adapter not set'); } + if (!isset($params['table_prefix'])) { + throw new Exception('table_prefix not set'); + } parent::__construct($params, $driver, $config, $eventManager); $this->adapter = new $params['adapter']($this); + $this->table_prefix = $params['table_prefix']; } /** @@ -43,7 +46,7 @@ class Connection extends \Doctrine\DBAL\Connection { * @return \Doctrine\DBAL\Driver\Statement The prepared statement. */ public function prepare( $statement, $limit=null, $offset=null ) { - // TODO: prefix + $statement = $this->replaceTablePrefix($statement); // TODO: limit & offset // TODO: prepared statement cache return parent::prepare($statement); @@ -85,4 +88,9 @@ class Connection extends \Doctrine\DBAL\Connection { // TODO: prefix return parent::executeUpdate($query, $params, $types); } + + // internal use + public function replaceTablePrefix($statement) { + return str_replace( '*PREFIX*', $this->table_prefix, $statement ); + } } -- GitLab From e3c5fea989f26a4ad16b841be25ea485c8aad8c4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 22 Mar 2013 18:36:40 +0100 Subject: [PATCH 014/164] Move lastInsertId to adapter classes --- lib/db.php | 29 +---------------------------- lib/db/adapter.php | 4 ++++ lib/db/adapteroci8.php | 8 ++++++++ lib/db/adapterpgsql.php | 3 +++ lib/db/adaptersqlsrv.php | 6 ++++++ lib/db/connection.php | 31 +++++++++++++++++++++++++++++-- 6 files changed, 51 insertions(+), 30 deletions(-) diff --git a/lib/db.php b/lib/db.php index a3233706109..c1c419df545 100644 --- a/lib/db.php +++ b/lib/db.php @@ -345,34 +345,7 @@ class OC_DB { */ public static function insertid($table=null) { self::connect(); - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type === 'pgsql' ) { - $result = self::executeAudited('SELECT lastval() AS id'); - $row = $result->fetchRow(); - self::raiseExceptionOnError($row, 'fetching row for insertid failed'); - return $row['id']; - } else if( $type === 'mssql') { - if($table !== null) { - $table = self::$connection->replaceTablePrefix( $table ); - } - return self::$connection->lastInsertId($table); - } - if( $type === 'oci' ) { - if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $suffix = '_SEQ'; - $table = '"'.str_replace( '*PREFIX*', $prefix, $table ).$suffix.'"'; - } - return self::$connection->lastInsertId($table); - } else { - if($table !== null) { - $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); - $table = self::$connection->replaceTablePrefix( $table ).$suffix; - } - $result = self::$connection->lastInsertId($table); - } - self::raiseExceptionOnError($result, 'insertid failed'); - return $result; + return self::$connection->lastInsertId($table); } /** diff --git a/lib/db/adapter.php b/lib/db/adapter.php index c62e35495cd..b0c9aab9c7a 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -14,4 +14,8 @@ class Adapter { public function __construct($conn) { $this->conn = $conn; } + + public function lastInsertId($table) { + return $this->conn->realLastInsertId($table); + } } diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php index 7ffff4909e7..50c4d078243 100644 --- a/lib/db/adapteroci8.php +++ b/lib/db/adapteroci8.php @@ -10,4 +10,12 @@ namespace OC\DB; class AdapterOCI8 extends Adapter { + public function lastInsertId($table) { + if($table !== null) { + $suffix = '_SEQ'; + $table = '"'.$table.$suffix.'"'; + $table = $this->conn->replaceTablePrefix( $table ); + } + return $this->conn->lastInsertId($table); + } } diff --git a/lib/db/adapterpgsql.php b/lib/db/adapterpgsql.php index d3b09357c0a..0084aad470e 100644 --- a/lib/db/adapterpgsql.php +++ b/lib/db/adapterpgsql.php @@ -10,4 +10,7 @@ namespace OC\DB; class AdapterPgSql extends Adapter { + public function lastInsertId($table) { + return $this->conn->fetchColumn('SELECT lastval()'); + } } diff --git a/lib/db/adaptersqlsrv.php b/lib/db/adaptersqlsrv.php index 281daf81d17..602c70456e5 100644 --- a/lib/db/adaptersqlsrv.php +++ b/lib/db/adaptersqlsrv.php @@ -10,4 +10,10 @@ namespace OC\DB; class AdapterSQLSrv extends Adapter { + public function lastInsertId($table) { + if($table !== null) { + $table = $this->conn->replaceTablePrefix( $table ); + } + return $this->conn->lastInsertId($table); + } } diff --git a/lib/db/connection.php b/lib/db/connection.php index 40809330da6..7d56452678c 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -67,7 +67,8 @@ class Connection extends \Doctrine\DBAL\Connection { */ public function executeQuery($query, array $params = array(), $types = array(), QueryCacheProfile $qcp = null) { - // TODO: prefix + $query = $this->replaceTablePrefix($query); + // TODO: fixup return parent::executeQuery($query, $params, $types, $qcp); } @@ -85,10 +86,36 @@ class Connection extends \Doctrine\DBAL\Connection { */ public function executeUpdate($query, array $params = array(), array $types = array()) { - // TODO: prefix + $query = $this->replaceTablePrefix($query); + // TODO: fixup return parent::executeUpdate($query, $params, $types); } + /** + * Returns the ID of the last inserted row, or the last value from a sequence object, + * depending on the underlying driver. + * + * Note: This method may not return a meaningful or consistent result across different drivers, + * because the underlying database may not even support the notion of AUTO_INCREMENT/IDENTITY + * columns or sequences. + * + * @param string $seqName Name of the sequence object from which the ID should be returned. + * @return string A string representation of the last inserted ID. + */ + public function lastInsertId($seqName = null) + { + if ($seqName) { + $seqName = $this->replaceTablePrefix($seqName); + } + return $this->adapter->lastInsertId($seqName); + } + + // internal use + public function realLastInsertId($seqName = null) + { + return parent::lastInsertId($seqName); + } + // internal use public function replaceTablePrefix($statement) { return str_replace( '*PREFIX*', $this->table_prefix, $statement ); -- GitLab From a48e9c488b7ccf22a911a0fb33b69ef782f63a81 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 21:35:11 +0100 Subject: [PATCH 015/164] Move prepared query cache handling to Connection wrapper --- lib/db.php | 27 +++++++++------------------ lib/db/connection.php | 28 +++++++++++++++++++++++++--- 2 files changed, 34 insertions(+), 21 deletions(-) diff --git a/lib/db.php b/lib/db.php index c1c419df545..c5690bdd8a9 100644 --- a/lib/db.php +++ b/lib/db.php @@ -43,9 +43,6 @@ class DatabaseException extends Exception { class OC_DB { const BACKEND_DOCTRINE=2; - static private $preparedQueries = array(); - static private $cachingEnabled = true; - /** * @var \Doctrine\DBAL\Connection */ @@ -102,7 +99,6 @@ class OC_DB { return true; } } - self::$preparedQueries = array(); // The global data we need $name = OC_Config::getValue( "dbname", "owncloud" ); $host = OC_Config::getValue( "dbhost", "" ); @@ -186,6 +182,11 @@ class OC_DB { $connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" ); try { self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + if ($type === 'sqlite' || $type === 'sqlite3') { + // Sqlite doesn't handle query caching and schema changes + // TODO: find a better way to handle this + self::$connection->disableQueryStatementCaching(); + } } catch(\Doctrine\DBAL\DBALException $e) { OC_Log::write('core', $e->getMessage(), OC_Log::FATAL); OC_User::setUserId(null); @@ -219,12 +220,8 @@ class OC_DB { } $platform = self::$connection->getDatabasePlatform(); $query = $platform->modifyLimitQuery($query, $limit, $offset); - } else { - if (isset(self::$preparedQueries[$query]) and self::$cachingEnabled) { - return self::$preparedQueries[$query]; } } - $rawQuery = $query; // Optimize the query $query = self::processQuery( $query ); @@ -248,12 +245,6 @@ class OC_DB { // differentiate between query and manipulation $result=new OC_DB_StatementWrapper($result, $isManipulation); } - if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type != 'sqlite' && $type != 'sqlite3' ) { - self::$preparedQueries[$rawQuery] = $result; - } - } return $result; } @@ -358,7 +349,6 @@ class OC_DB { // Cut connection if required if(self::$connection) { self::$connection->close(); - self::$preparedQueries = array(); } return true; @@ -672,9 +662,10 @@ class OC_DB { * @param bool $enabled */ static public function enableCaching($enabled) { - if (!$enabled) { - self::$preparedQueries = array(); + if ($enabled) { + self::$connection->enableQueryStatementCaching(); + } else { + self::$connection->disableQueryStatementCaching(); } - self::$cachingEnabled = $enabled; } } diff --git a/lib/db/connection.php b/lib/db/connection.php index 7d56452678c..763251c1903 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -17,6 +17,9 @@ class Connection extends \Doctrine\DBAL\Connection { protected $adapter; + protected $preparedQueries = array(); + protected $cachingQueryStatementEnabled = true; + /** * Initializes a new instance of the Connection class. * @@ -47,9 +50,19 @@ class Connection extends \Doctrine\DBAL\Connection { */ public function prepare( $statement, $limit=null, $offset=null ) { $statement = $this->replaceTablePrefix($statement); - // TODO: limit & offset - // TODO: prepared statement cache - return parent::prepare($statement); + if (!is_null($limit) && $limit != -1) { + // TODO: limit & offset + } else { + if (isset($this->preparedQueries[$statement]) && $this->cachingQueryStatementEnabled) { + return $this->preparedQueries[$statement]; + } + } + $rawQuery = $statement; + $result = parent::prepare($statement); + if ((is_null($limit) || $limit == -1) && $this->cachingQueryStatementEnabled) { + $this->preparedQueries[$rawQuery] = $result; + } + return $result; } /** @@ -120,4 +133,13 @@ class Connection extends \Doctrine\DBAL\Connection { public function replaceTablePrefix($statement) { return str_replace( '*PREFIX*', $this->table_prefix, $statement ); } + + public function enableQueryStatementCaching() { + $this->cachingQueryStatementEnabled = true; + } + + public function disableQueryStatementCaching() { + $this->cachingQueryStatementEnabled = false; + $this->preparedQueries = array(); + } } -- GitLab From 1d5d23a1de5a490595d8bb7ea81b8bda48b8feeb Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 21:46:03 +0100 Subject: [PATCH 016/164] Move limit/offset handling to Connection wrapper --- lib/db.php | 65 +------------------------------------------ lib/db/connection.php | 10 +++++-- 2 files changed, 8 insertions(+), 67 deletions(-) diff --git a/lib/db.php b/lib/db.php index c5690bdd8a9..4451f813905 100644 --- a/lib/db.php +++ b/lib/db.php @@ -213,16 +213,6 @@ class OC_DB { * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { - - if (!is_null($limit) && $limit != -1) { - if ($limit === -1) { - $limit = null; - } - $platform = self::$connection->getDatabasePlatform(); - $query = $platform->modifyLimitQuery($query, $limit, $offset); - } - } - // Optimize the query $query = self::processQuery( $query ); if(OC_Config::getValue( "log_query", false)) { @@ -238,7 +228,7 @@ class OC_DB { // return the result if (self::$backend == self::BACKEND_DOCTRINE) { try { - $result=self::$connection->prepare($query); + $result=self::$connection->prepare($query, $limit, $offset); } catch(\Doctrine\DBAL\DBALException $e) { throw new \DatabaseException($e->getMessage(), $query); } @@ -493,64 +483,11 @@ class OC_DB { $query = str_replace( 'LENGTH(', 'LEN(', $query ); $query = str_replace( 'SUBSTR(', 'SUBSTRING(', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $query ); - - $query = self::fixLimitClauseForMSSQL($query); } return $query; } - private static function fixLimitClauseForMSSQL($query) { - $limitLocation = stripos ($query, "LIMIT"); - - if ( $limitLocation === false ) { - return $query; - } - - // total == 0 means all results - not zero results - // - // First number is either total or offset, locate it by first space - // - $offset = substr ($query, $limitLocation + 5); - $offset = substr ($offset, 0, stripos ($offset, ' ')); - $offset = trim ($offset); - - // check for another parameter - if (stripos ($offset, ',') === false) { - // no more parameters - $offset = 0; - $total = intval ($offset); - } else { - // found another parameter - $offset = intval ($offset); - - $total = substr ($query, $limitLocation + 5); - $total = substr ($total, stripos ($total, ',')); - - $total = substr ($total, 0, stripos ($total, ' ')); - $total = intval ($total); - } - - $query = trim (substr ($query, 0, $limitLocation)); - - if ($offset == 0 && $total !== 0) { - if (strpos($query, "SELECT") === false) { - $query = "TOP {$total} " . $query; - } else { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP '.$total, $query); - } - } else if ($offset > 0) { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP(10000000) ', $query); - $query = 'SELECT * - FROM (SELECT sub2.*, ROW_NUMBER() OVER(ORDER BY sub2.line2) AS line3 - FROM (SELECT 1 AS line2, sub1.* FROM (' . $query . ') AS sub1) as sub2) AS sub3'; - - if ($total > 0) { - $query .= ' WHERE line3 BETWEEN ' . ($offset + 1) . ' AND ' . ($offset + $total); - } else { - $query .= ' WHERE line3 > ' . $offset; - } - } return $query; } diff --git a/lib/db/connection.php b/lib/db/connection.php index 763251c1903..c8695b13190 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -50,8 +50,12 @@ class Connection extends \Doctrine\DBAL\Connection { */ public function prepare( $statement, $limit=null, $offset=null ) { $statement = $this->replaceTablePrefix($statement); - if (!is_null($limit) && $limit != -1) { - // TODO: limit & offset + if ($limit === -1) { + $limit = null; + } + if (!is_null($limit)) { + $platform = $this->getDatabasePlatform(); + $statement = $platform->modifyLimitQuery($statement, $limit, $offset); } else { if (isset($this->preparedQueries[$statement]) && $this->cachingQueryStatementEnabled) { return $this->preparedQueries[$statement]; @@ -59,7 +63,7 @@ class Connection extends \Doctrine\DBAL\Connection { } $rawQuery = $statement; $result = parent::prepare($statement); - if ((is_null($limit) || $limit == -1) && $this->cachingQueryStatementEnabled) { + if (is_null($limit) && $this->cachingQueryStatementEnabled) { $this->preparedQueries[$rawQuery] = $result; } return $result; -- GitLab From 58991150ab17846640907d43a6d4b0ff502d4986 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 22:49:55 +0100 Subject: [PATCH 017/164] Move query statement fixup handling to Connection wrapper --- lib/db.php | 48 ---------------------------------------- lib/db/adapter.php | 4 ++++ lib/db/adapteroci8.php | 7 ++++++ lib/db/adapterpgsql.php | 6 +++++ lib/db/adaptersqlite.php | 6 +++++ lib/db/adaptersqlsrv.php | 9 ++++++++ lib/db/connection.php | 9 ++++++-- 7 files changed, 39 insertions(+), 50 deletions(-) diff --git a/lib/db.php b/lib/db.php index 4451f813905..0ad8a9b35d8 100644 --- a/lib/db.php +++ b/lib/db.php @@ -213,11 +213,6 @@ class OC_DB { * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { - // Optimize the query - $query = self::processQuery( $query ); - if(OC_Config::getValue( "log_query", false)) { - OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG); - } self::connect(); if ($isManipulation === null) { @@ -448,49 +443,6 @@ class OC_DB { return $result; } - /** - * @brief does minor changes to query - * @param string $query Query string - * @return string corrected query string - * - * This function replaces *PREFIX* with the value of $CONFIG_DBTABLEPREFIX - * and replaces the ` with ' or " according to the database driver. - */ - private static function processQuery( $query ) { - self::connect(); - // We need Database type - if(is_null(self::$type)) { - self::$type=OC_Config::getValue( "dbtype", "sqlite" ); - } - $type = self::$type; - - // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - } elseif( $type == 'pgsql' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', - $query ); - } elseif( $type == 'oci' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400", $query ); - }elseif( $type == 'mssql' ) { - $query = preg_replace( "/\`(.*?)`/", "[$1]", $query ); - $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_replace( 'LENGTH(', 'LEN(', $query ); - $query = str_replace( 'SUBSTR(', 'SUBSTRING(', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $query ); - } - - return $query; - } - - return $query; - } - /** * @brief drop a table * @param string $tableName the table to drop diff --git a/lib/db/adapter.php b/lib/db/adapter.php index b0c9aab9c7a..3b83853289a 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -18,4 +18,8 @@ class Adapter { public function lastInsertId($table) { return $this->conn->realLastInsertId($table); } + + public function fixupStatement($statement) { + return $statement; + } } diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php index 50c4d078243..6123007cb2f 100644 --- a/lib/db/adapteroci8.php +++ b/lib/db/adapteroci8.php @@ -18,4 +18,11 @@ class AdapterOCI8 extends Adapter { } return $this->conn->lastInsertId($table); } + + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400", $statement ); + return $statement; + } } diff --git a/lib/db/adapterpgsql.php b/lib/db/adapterpgsql.php index 0084aad470e..acfc4201629 100644 --- a/lib/db/adapterpgsql.php +++ b/lib/db/adapterpgsql.php @@ -13,4 +13,10 @@ class AdapterPgSql extends Adapter { public function lastInsertId($table) { return $this->conn->fetchColumn('SELECT lastval()'); } + + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $statement ); + return $statement; + } } diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php index 0b8107ac53e..f0057ab489f 100644 --- a/lib/db/adaptersqlite.php +++ b/lib/db/adaptersqlite.php @@ -10,4 +10,10 @@ namespace OC\DB; class AdapterSqlite extends Adapter { + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'NOW()', 'datetime(\'now\')', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $statement ); + return $statement; + } } diff --git a/lib/db/adaptersqlsrv.php b/lib/db/adaptersqlsrv.php index 602c70456e5..d0a67af28a7 100644 --- a/lib/db/adaptersqlsrv.php +++ b/lib/db/adaptersqlsrv.php @@ -16,4 +16,13 @@ class AdapterSQLSrv extends Adapter { } return $this->conn->lastInsertId($table); } + + public function fixupStatement($statement) { + $statement = preg_replace( "/\`(.*?)`/", "[$1]", $statement ); + $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); + $statement = str_replace( 'LENGTH(', 'LEN(', $statement ); + $statement = str_replace( 'SUBSTR(', 'SUBSTRING(', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $statement ); + return $statement; + } } diff --git a/lib/db/connection.php b/lib/db/connection.php index c8695b13190..8442efc47c9 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -50,6 +50,8 @@ class Connection extends \Doctrine\DBAL\Connection { */ public function prepare( $statement, $limit=null, $offset=null ) { $statement = $this->replaceTablePrefix($statement); + $statement = $this->adapter->fixupStatement($statement); + if ($limit === -1) { $limit = null; } @@ -62,6 +64,9 @@ class Connection extends \Doctrine\DBAL\Connection { } } $rawQuery = $statement; + if(\OC_Config::getValue( "log_query", false)) { + \OC_Log::write('core', 'DB prepare : '.$statement, \OC_Log::DEBUG); + } $result = parent::prepare($statement); if (is_null($limit) && $this->cachingQueryStatementEnabled) { $this->preparedQueries[$rawQuery] = $result; @@ -85,7 +90,7 @@ class Connection extends \Doctrine\DBAL\Connection { public function executeQuery($query, array $params = array(), $types = array(), QueryCacheProfile $qcp = null) { $query = $this->replaceTablePrefix($query); - // TODO: fixup + $query = $this->adapter->fixupStatement($query); return parent::executeQuery($query, $params, $types, $qcp); } @@ -104,7 +109,7 @@ class Connection extends \Doctrine\DBAL\Connection { public function executeUpdate($query, array $params = array(), array $types = array()) { $query = $this->replaceTablePrefix($query); - // TODO: fixup + $query = $this->adapter->fixupStatement($query); return parent::executeUpdate($query, $params, $types); } -- GitLab From 19b9c896340c572d9a42d033cd8824f33d18efa3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 26 Feb 2013 08:30:42 +0100 Subject: [PATCH 018/164] Move insertIfNotExist to Connection wrapper Real implementation is in DB\Adapter* classes --- lib/db.php | 53 +--------------------------------------- lib/db/adapter.php | 28 +++++++++++++++++++++ lib/db/adaptersqlite.php | 41 +++++++++++++++++++++++++++++++ lib/db/connection.php | 12 ++++++++- 4 files changed, 81 insertions(+), 53 deletions(-) diff --git a/lib/db.php b/lib/db.php index 0ad8a9b35d8..1f62326eea3 100644 --- a/lib/db.php +++ b/lib/db.php @@ -389,58 +389,7 @@ class OC_DB { */ public static function insertIfNotExist($table, $input) { self::connect(); - $table = self::$connection->replaceTablePrefix( $table ); - - if(is_null(self::$type)) { - self::$type=OC_Config::getValue( "dbtype", "sqlite" ); - } - $type = self::$type; - - $query = ''; - $inserts = array_values($input); - // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ) { - // NOTE: For SQLite we have to use this clumsy approach - // otherwise all fieldnames used must have a unique key. - $query = 'SELECT * FROM `' . $table . '` WHERE '; - foreach($input as $key => $value) { - $query .= '`' . $key . '` = ? AND '; - } - $query = substr($query, 0, strlen($query) - 5); - try { - $result = self::executeAudited($query, $inserts); - } catch(DatabaseException $e) { - OC_Template::printExceptionErrorPage( $e ); - } - - if((int)$result->numRows() === 0) { - $query = 'INSERT INTO `' . $table . '` (`' - . implode('`,`', array_keys($input)) . '`) VALUES(' - . str_repeat('?,', count($input)-1).'? ' . ')'; - } else { - return 0; //no rows updated - } - } elseif( $type == 'pgsql' || $type == 'oci' || $type == 'mysql' || $type == 'mssql') { - $query = 'INSERT INTO `' .$table . '` (`' - . implode('`,`', array_keys($input)) . '`) SELECT ' - . str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative? - . 'FROM `' . $table . '` WHERE '; - - foreach($input as $key => $value) { - $query .= '`' . $key . '` = ? AND '; - } - $query = substr($query, 0, strlen($query) - 5); - $query .= ' HAVING COUNT(*) = 0'; - $inserts = array_merge($inserts, $inserts); - } - - try { - $result = self::executeAudited($query, $inserts); - } catch(\Doctrine\DBAL\DBALException $e) { - OC_Template::printExceptionErrorPage( $e ); - } - - return $result; + return self::$connection->insertIfNotExist($table, $input); } /** diff --git a/lib/db/adapter.php b/lib/db/adapter.php index 3b83853289a..3b950331191 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -22,4 +22,32 @@ class Adapter { public function fixupStatement($statement) { return $statement; } + + public function insertIfNotExist($table, $input) { + $query = 'INSERT INTO `' .$table . '` (`' + . implode('`,`', array_keys($input)) . '`) SELECT ' + . str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative? + . 'FROM `' . $table . '` WHERE '; + + foreach($input as $key => $value) { + $query .= '`' . $key . '` = ? AND '; + } + $query = substr($query, 0, strlen($query) - 5); + $query .= ' HAVING COUNT(*) = 0'; + $inserts = array_values($input); + $inserts = array_merge($inserts, $inserts); + + try { + $statement = $this->conn->prepare($query); + $result = $statement->execute($inserts); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query.'
'; + OC_Log::write('core', $entry, OC_Log::FATAL); + error_log('DB error: ' . $entry); + OC_Template::printErrorPage( $entry ); + } + + return $result; + } } diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php index f0057ab489f..252fd94b0c0 100644 --- a/lib/db/adaptersqlite.php +++ b/lib/db/adaptersqlite.php @@ -16,4 +16,45 @@ class AdapterSqlite extends Adapter { $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $statement ); return $statement; } + + public function insertIfNotExist($table, $input) { + // NOTE: For SQLite we have to use this clumsy approach + // otherwise all fieldnames used must have a unique key. + $query = 'SELECT COUNT(*) FROM `' . $table . '` WHERE '; + foreach($input as $key => $value) { + $query .= '`' . $key . '` = ? AND '; + } + $query = substr($query, 0, strlen($query) - 5); + try { + $stmt = $this->conn->prepare($query); + $result = $stmt->execute(array($input)); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query . '
'; + OC_Log::write('core', $entry, OC_Log::FATAL); + error_log('DB error: '.$entry); + OC_Template::printErrorPage( $entry ); + } + + if ($stmt->fetchColumn() === 0) { + $query = 'INSERT INTO `' . $table . '` (`' + . implode('`,`', array_keys($input)) . '`) VALUES(' + . str_repeat('?,', count($input)-1).'? ' . ')'; + } else { + return 0; //no rows updated + } + + try { + $statement = $this->conn->prepare($query); + $result = $statement->execute(array_values($input)); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query.'
'; + OC_Log::write('core', $entry, OC_Log::FATAL); + error_log('DB error: ' . $entry); + OC_Template::printErrorPage( $entry ); + } + + return $result; + } } diff --git a/lib/db/connection.php b/lib/db/connection.php index 8442efc47c9..e18062d78f3 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -138,8 +138,18 @@ class Connection extends \Doctrine\DBAL\Connection { return parent::lastInsertId($seqName); } + /** + * @brief Insert a row if a matching row doesn't exists. + * @param string $table. The table to insert into in the form '*PREFIX*tableName' + * @param array $input. An array of fieldname/value pairs + * @returns bool The return value from execute() + */ + public function insertIfNotExist($table, $input) { + return $this->adapter->insertIfNotExist($table, $input); + } + // internal use - public function replaceTablePrefix($statement) { + protected function replaceTablePrefix($statement) { return str_replace( '*PREFIX*', $this->table_prefix, $statement ); } -- GitLab From 8a332cdc941c7f1c059dcfdf04fc851364abc1b4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 22:59:06 +0100 Subject: [PATCH 019/164] Simplify OC_DB transaction functions --- lib/db.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/db.php b/lib/db.php index 1f62326eea3..59fd73b37c7 100644 --- a/lib/db.php +++ b/lib/db.php @@ -53,7 +53,6 @@ class OC_DB { */ static private $DOCTRINE=null; - static private $inTransaction=false; static private $type=null; /** @@ -421,27 +420,18 @@ class OC_DB { /** * Start a transaction - * @return bool */ public static function beginTransaction() { self::connect(); self::$connection->beginTransaction(); - self::$inTransaction=true; - return true; } /** * Commit the database changes done during a transaction that is in progress - * @return bool */ public static function commit() { self::connect(); - if(!self::$inTransaction) { - return false; - } self::$connection->commit(); - self::$inTransaction=false; - return true; } /** -- GitLab From 3e0e2cfa19389edc2da8426620b7b412819208ca Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 24 Feb 2013 22:12:02 +0100 Subject: [PATCH 020/164] Use $connection for schema changes --- lib/db.php | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/lib/db.php b/lib/db.php index 59fd73b37c7..b317d174313 100644 --- a/lib/db.php +++ b/lib/db.php @@ -347,8 +347,8 @@ class OC_DB { * TODO: write more documentation */ public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - self::connectDoctrine(); - return OC_DB_Schema::getDbStructure(self::$DOCTRINE, $file); + self::connect(); + return OC_DB_Schema::getDbStructure(self::$connection, $file); } /** @@ -359,8 +359,9 @@ class OC_DB { * TODO: write more documentation */ public static function createDbFromStructure( $file ) { - self::connectDoctrine(); - return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file); + self::connect(); + $result = OC_DB_Schema::createDbFromStructure(self::$connection, $file); + return $result; } /** @@ -370,9 +371,9 @@ class OC_DB { * @return bool */ public static function updateDbFromStructure($file) { - self::connectDoctrine(); + self::connect(); try { - $result = OC_DB_Schema::updateDbFromStructure(self::$DOCTRINE, $file); + $result = OC_DB_Schema::updateDbFromStructure(self::$connection, $file); } catch (Exception $e) { OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); throw $e; @@ -396,8 +397,8 @@ class OC_DB { * @param string $tableName the table to drop */ public static function dropTable($tableName) { - self::connectDoctrine(); - OC_DB_Schema::dropTable(self::$DOCTRINE, $tableName); + self::connect(); + OC_DB_Schema::dropTable(self::$connection, $tableName); } /** @@ -405,8 +406,8 @@ class OC_DB { * @param string $file the xml file describing the tables */ public static function removeDBStructure($file) { - self::connectDoctrine(); - OC_DB_Schema::removeDBStructure(self::$DOCTRINE, $file); + self::connect(); + OC_DB_Schema::removeDBStructure(self::$connection, $file); } /** @@ -414,8 +415,8 @@ class OC_DB { * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $file ) { - self::connectDoctrine(); - OC_DB_Schema::replaceDB(self::$DOCTRINE, $file); + self::connect(); + OC_DB_Schema::replaceDB(self::$connection, $file); } /** -- GitLab From 013333fe6a41c4681efcff64391d2bf7b1af5ab3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 23:45:07 +0100 Subject: [PATCH 021/164] Cleanup: remove code for multiple database backends --- lib/db.php | 69 +++++++++++------------------------------------------- 1 file changed, 14 insertions(+), 55 deletions(-) diff --git a/lib/db.php b/lib/db.php index b317d174313..ac40be348be 100644 --- a/lib/db.php +++ b/lib/db.php @@ -41,63 +41,27 @@ class DatabaseException extends Exception { * Doctrine with some adaptions. */ class OC_DB { - const BACKEND_DOCTRINE=2; - /** * @var \Doctrine\DBAL\Connection */ - static private $connection; //the preferred connection to use, only Doctrine - static private $backend=null; /** * @var \Doctrine\DBAL\Connection */ - static private $DOCTRINE=null; + static private $connection; //the prefered connection to use, only Doctrine static private $type=null; - /** - * check which backend we should use - * @return int BACKEND_DOCTRINE - */ - private static function getDBBackend() { - return self::BACKEND_DOCTRINE; - } - /** * @brief connects to the database - * @param int $backend * @return bool true if connection can be established or false on error * * Connects to the database as specified in config.php */ - public static function connect($backend=null) { + public static function connect() { if(self::$connection) { return true; } - if(is_null($backend)) { - $backend=self::getDBBackend(); - } - if($backend==self::BACKEND_DOCTRINE) { - $success = self::connectDoctrine(); - self::$connection=self::$DOCTRINE; - self::$backend=self::BACKEND_DOCTRINE; - } - return $success; - } - /** - * connect to the database using doctrine - * - * @return bool - */ - public static function connectDoctrine() { - if(self::$connection) { - if(self::$backend!=self::BACKEND_DOCTRINE) { - self::disconnect(); - } else { - return true; - } - } // The global data we need $name = OC_Config::getValue( "dbname", "owncloud" ); $host = OC_Config::getValue( "dbhost", "" ); @@ -111,7 +75,7 @@ class OC_DB { } // do nothing if the connection already has been established - if(!self::$DOCTRINE) { + if(!self::$connection) { $config = new \Doctrine\DBAL\Configuration(); switch($type) { case 'sqlite': @@ -180,7 +144,7 @@ class OC_DB { $connectionParams['wrapperClass'] = 'OC\DB\Connection'; $connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" ); try { - self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); if ($type === 'sqlite' || $type === 'sqlite3') { // Sqlite doesn't handle query caching and schema changes // TODO: find a better way to handle this @@ -220,18 +184,16 @@ class OC_DB { } // return the result - if (self::$backend == self::BACKEND_DOCTRINE) { - try { - $result=self::$connection->prepare($query, $limit, $offset); - } catch(\Doctrine\DBAL\DBALException $e) { - throw new \DatabaseException($e->getMessage(), $query); - } - // differentiate between query and manipulation - $result=new OC_DB_StatementWrapper($result, $isManipulation); + try { + $result=self::$connection->prepare($query, $limit, $offset); + } catch(\Doctrine\DBAL\DBALException $e) { + throw new \DatabaseException($e->getMessage(), $query); } + // differentiate between query and manipulation + $result=new OC_DB_StatementWrapper($result, $isManipulation); return $result; } - + /** * tries to guess the type of statement based on the first 10 characters * the current check allows some whitespace but does not work with IF EXISTS or other more complex statements @@ -325,7 +287,6 @@ class OC_DB { /** * @brief Disconnect - * @return bool * * This is good bye, good bye, yeah! */ @@ -334,8 +295,6 @@ class OC_DB { if(self::$connection) { self::$connection->close(); } - - return true; } /** else { @@ -473,9 +432,9 @@ class OC_DB { * @return string */ public static function getErrorMessage($error) { - if (self::$backend==self::BACKEND_DOCTRINE and self::$DOCTRINE) { - $msg = self::$DOCTRINE->errorCode() . ': '; - $errorInfo = self::$DOCTRINE->errorInfo(); + if (self::$connection) { + $msg = self::$connection->errorCode() . ': '; + $errorInfo = self::$connection->errorInfo(); if (is_array($errorInfo)) { $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', '; -- GitLab From de83bf98c759d8af9483306ddea07006693f74be Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 26 Feb 2013 17:39:13 +0100 Subject: [PATCH 022/164] Group database connection and schema function --- lib/db.php | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/db.php b/lib/db.php index ac40be348be..48e1439a336 100644 --- a/lib/db.php +++ b/lib/db.php @@ -285,6 +285,33 @@ class OC_DB { return self::$connection->lastInsertId($table); } + /** + * @brief Insert a row if a matching row doesn't exists. + * @param string $table. The table to insert into in the form '*PREFIX*tableName' + * @param array $input. An array of fieldname/value pairs + * @returns int number of updated rows + */ + public static function insertIfNotExist($table, $input) { + self::connect(); + return self::$connection->insertIfNotExist($table, $input); + } + + /** + * Start a transaction + */ + public static function beginTransaction() { + self::connect(); + self::$connection->beginTransaction(); + } + + /** + * Commit the database changes done during a transaction that is in progress + */ + public static function commit() { + self::connect(); + self::$connection->commit(); + } + /** * @brief Disconnect * @@ -340,17 +367,6 @@ class OC_DB { return $result; } - /** - * @brief Insert a row if a matching row doesn't exists. - * @param string $table. The table to insert into in the form '*PREFIX*tableName' - * @param array $input. An array of fieldname/value pairs - * @returns int number of updated rows - */ - public static function insertIfNotExist($table, $input) { - self::connect(); - return self::$connection->insertIfNotExist($table, $input); - } - /** * @brief drop a table * @param string $tableName the table to drop @@ -378,22 +394,6 @@ class OC_DB { OC_DB_Schema::replaceDB(self::$connection, $file); } - /** - * Start a transaction - */ - public static function beginTransaction() { - self::connect(); - self::$connection->beginTransaction(); - } - - /** - * Commit the database changes done during a transaction that is in progress - */ - public static function commit() { - self::connect(); - self::$connection->commit(); - } - /** * check if a result is an error, works with Doctrine * @param mixed $result -- GitLab From 000b5a801f27914d0a906b5f4c6ff58e14e5aebe Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 1 Jul 2013 18:20:27 +0200 Subject: [PATCH 023/164] Move building error string to connection --- lib/db.php | 10 +--------- lib/db/connection.php | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/lib/db.php b/lib/db.php index 48e1439a336..9270b2a1517 100644 --- a/lib/db.php +++ b/lib/db.php @@ -433,16 +433,8 @@ class OC_DB { */ public static function getErrorMessage($error) { if (self::$connection) { - $msg = self::$connection->errorCode() . ': '; - $errorInfo = self::$connection->errorInfo(); - if (is_array($errorInfo)) { - $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; - $msg .= 'Driver Code = '.$errorInfo[1] . ', '; - $msg .= 'Driver Message = '.$errorInfo[2]; - } - return $msg; + return self::$connection->getError(); } - return ''; } diff --git a/lib/db/connection.php b/lib/db/connection.php index e18062d78f3..1f01fae4f71 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -148,6 +148,23 @@ class Connection extends \Doctrine\DBAL\Connection { return $this->adapter->insertIfNotExist($table, $input); } + /** + * returns the error code and message as a string for logging + * works with DoctrineException + * @param mixed $error + * @return string + */ + public function getError() { + $msg = $this->errorCode() . ': '; + $errorInfo = $this->errorInfo(); + if (is_array($errorInfo)) { + $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; + $msg .= 'Driver Code = '.$errorInfo[1] . ', '; + $msg .= 'Driver Message = '.$errorInfo[2]; + } + return $msg; + } + // internal use protected function replaceTablePrefix($statement) { return str_replace( '*PREFIX*', $this->table_prefix, $statement ); -- GitLab From b66c9098bd4188a1fbeb92351d1370736c10d1b4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 18 Jul 2013 23:57:15 +0200 Subject: [PATCH 024/164] Correct namespace of OC_ classes --- lib/db/adapter.php | 4 ++-- lib/db/adaptersqlite.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/db/adapter.php b/lib/db/adapter.php index 3b950331191..92c24b46fff 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -43,9 +43,9 @@ class Adapter { } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query.'
'; - OC_Log::write('core', $entry, OC_Log::FATAL); + \OC_Log::write('core', $entry, \OC_Log::FATAL); error_log('DB error: ' . $entry); - OC_Template::printErrorPage( $entry ); + \OC_Template::printErrorPage( $entry ); } return $result; diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php index 252fd94b0c0..61cfaa44242 100644 --- a/lib/db/adaptersqlite.php +++ b/lib/db/adaptersqlite.php @@ -31,9 +31,9 @@ class AdapterSqlite extends Adapter { } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query . '
'; - OC_Log::write('core', $entry, OC_Log::FATAL); + \OC_Log::write('core', $entry, \OC_Log::FATAL); error_log('DB error: '.$entry); - OC_Template::printErrorPage( $entry ); + \OC_Template::printErrorPage( $entry ); } if ($stmt->fetchColumn() === 0) { @@ -50,9 +50,9 @@ class AdapterSqlite extends Adapter { } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query.'
'; - OC_Log::write('core', $entry, OC_Log::FATAL); + \OC_Log::write('core', $entry, \OC_Log::FATAL); error_log('DB error: ' . $entry); - OC_Template::printErrorPage( $entry ); + \OC_Template::printErrorPage( $entry ); } return $result; -- GitLab From be7c6139938564fc2ce5a12982eb82f60087f900 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Jul 2013 11:07:17 +0200 Subject: [PATCH 025/164] Fix errors from unit tests --- lib/db/adapter.php | 3 +-- lib/db/adaptersqlite.php | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/db/adapter.php b/lib/db/adapter.php index 92c24b46fff..20e7ea4a600 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -38,8 +38,7 @@ class Adapter { $inserts = array_merge($inserts, $inserts); try { - $statement = $this->conn->prepare($query); - $result = $statement->execute($inserts); + $result = $this->conn->executeUpdate($query, $inserts); } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query.'
'; diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php index 61cfaa44242..fa6d308ae32 100644 --- a/lib/db/adaptersqlite.php +++ b/lib/db/adaptersqlite.php @@ -27,7 +27,7 @@ class AdapterSqlite extends Adapter { $query = substr($query, 0, strlen($query) - 5); try { $stmt = $this->conn->prepare($query); - $result = $stmt->execute(array($input)); + $result = $stmt->execute(array_values($input)); } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query . '
'; @@ -36,7 +36,7 @@ class AdapterSqlite extends Adapter { \OC_Template::printErrorPage( $entry ); } - if ($stmt->fetchColumn() === 0) { + if ($stmt->fetchColumn() === '0') { $query = 'INSERT INTO `' . $table . '` (`' . implode('`,`', array_keys($input)) . '`) VALUES(' . str_repeat('?,', count($input)-1).'? ' . ')'; -- GitLab From dc272e6e209e9cc9a555df7ee103e48f8d088dc6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 16:24:46 +0200 Subject: [PATCH 026/164] db: cast default values for boolean fields to booleans --- lib/db/mdb2schemareader.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 0ead9528c93..b88e0f60419 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -167,6 +167,9 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } + if ($type == 'boolean' && isset($options['default'])){ + $options['default'] = self::asBool($options['default']); + } if (!empty($options['autoincrement']) && !empty($options['notnull'])) { $options['primary'] = true; -- GitLab From b073a34e77d127488b414fedc5b24c31b11bc12e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 16:25:07 +0200 Subject: [PATCH 027/164] add support for the element within field definitions --- lib/db/mdb2schemareader.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index b88e0f60419..e9561a7ef1d 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -138,6 +138,10 @@ class OC_DB_MDB2SchemaReader { $comment = (string)$child; $options['comment'] = $comment; break; + case 'primary': + $primary = self::asBool($child); + $options['primary'] = $primary; + break; default: throw new DomainException('Unknown element: '.$child->getName()); -- GitLab From 499a01f179d511135828c10edf64348547d31794 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 17:41:33 +0200 Subject: [PATCH 028/164] use === --- lib/db/mdb2schemareader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index e9561a7ef1d..ad4b2fe0e03 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -171,7 +171,7 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } - if ($type == 'boolean' && isset($options['default'])){ + if ($type === 'boolean' && isset($options['default'])){ $options['default'] = self::asBool($options['default']); } if (!empty($options['autoincrement']) -- GitLab From 3eb5fff02a477fbb3bd4080a4eb4e773e8db5d1f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 23 Jul 2013 18:09:38 +0200 Subject: [PATCH 029/164] Add documentation to OC\DB\adapter class --- lib/db/adapter.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/db/adapter.php b/lib/db/adapter.php index 20e7ea4a600..2e4f230f366 100644 --- a/lib/db/adapter.php +++ b/lib/db/adapter.php @@ -8,6 +8,10 @@ namespace OC\DB; +/** + * This handles the way we use to write queries, into something that can be + * handled by the database abstraction layer. + */ class Adapter { protected $conn; @@ -15,14 +19,28 @@ class Adapter { $this->conn = $conn; } + /** + * @param string $table name + * @return int id of last insert statement + */ public function lastInsertId($table) { return $this->conn->realLastInsertId($table); } + /** + * @param $statement that needs to be changed so the db can handle it + * @return string changed statement + */ public function fixupStatement($statement) { return $statement; } + /** + * @brief insert the @input values when they do not exist yet + * @param string $table name + * @param array key->value pairs + * @return count of inserted rows + */ public function insertIfNotExist($table, $input) { $query = 'INSERT INTO `' .$table . '` (`' . implode('`,`', array_keys($input)) . '`) SELECT ' -- GitLab From 793ff0fec9d438bfdcf63e04f1d6897cadbf7a8a Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 23 Jul 2013 22:16:04 +0200 Subject: [PATCH 030/164] Fix lastInsertId for OCI8 adapter --- lib/db/adapteroci8.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php index 6123007cb2f..3ff98af04fe 100644 --- a/lib/db/adapteroci8.php +++ b/lib/db/adapteroci8.php @@ -14,9 +14,8 @@ class AdapterOCI8 extends Adapter { if($table !== null) { $suffix = '_SEQ'; $table = '"'.$table.$suffix.'"'; - $table = $this->conn->replaceTablePrefix( $table ); } - return $this->conn->lastInsertId($table); + return $this->conn->realLastInsertId($table); } public function fixupStatement($statement) { -- GitLab From 59bdba9bac531fb18b7026649e118ea4e3944e07 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 26 Jul 2013 15:43:10 +0200 Subject: [PATCH 031/164] fix scanner hooks, cant use inside closures in php 5.3 --- lib/files/utils/scanner.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index 800bb649934..da0cbd75f65 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -10,6 +10,7 @@ namespace OC\Files\Utils; use OC\Hooks\BasicEmitter; use OC\Files\Filesystem; +use OC\Hooks\PublicEmitter; /** * Class Scanner @@ -20,7 +21,7 @@ use OC\Files\Filesystem; * * @package OC\Files\Utils */ -class Scanner extends BasicEmitter { +class Scanner extends PublicEmitter { /** * @var string $user */ @@ -60,11 +61,12 @@ class Scanner extends BasicEmitter { */ protected function attachListener($mount) { $scanner = $mount->getStorage()->getScanner(); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); + $emitter = $this; + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, &$emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); }); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, &$emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); }); } -- GitLab From d7916363e1efbc15a5dba51056fb8af93330e5eb Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 2 Mar 2013 17:17:11 +0100 Subject: [PATCH 032/164] Make DB connection available to use for dependency injection --- lib/db.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/db.php b/lib/db.php index 9270b2a1517..102782ac6ba 100644 --- a/lib/db.php +++ b/lib/db.php @@ -164,6 +164,11 @@ class OC_DB { return true; } + static public function getConnection() { + self::connect(); + return self::$connection; + } + /** * @brief Prepare a SQL query * @param string $query Query string -- GitLab From dd4e33fe6b1cf9feccaeae33c81fc8b08fb24d4d Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 28 Jul 2013 16:14:49 -0400 Subject: [PATCH 033/164] Fix calculating size for empty folders --- lib/files/cache/cache.php | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 3818fdbd840..458df56141c 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -485,27 +485,24 @@ class Cache { * @return int */ public function calculateFolderSize($path) { - $id = $this->getId($path); - if ($id === -1) { - return 0; - } - $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; - $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); $totalSize = 0; - $hasChilds = 0; - while ($row = $result->fetchRow()) { - $hasChilds = true; - $size = (int)$row['size']; - if ($size === -1) { - $totalSize = -1; - break; - } else { - $totalSize += $size; + $entry = $this->get($path); + if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { + $id = $entry['fileid']; + $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; + $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); + while ($row = $result->fetchRow()) { + $size = (int)$row['size']; + if ($size === -1) { + $totalSize = -1; + break; + } else { + $totalSize += $size; + } + } + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); } - } - - if ($hasChilds) { - $this->update($id, array('size' => $totalSize)); } return $totalSize; } -- GitLab From 7e5ae8d78082891386f170d2d3db9b7ca7436e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 12:31:46 +0200 Subject: [PATCH 034/164] test lastinsertid --- tests/lib/db.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index e817a2db5ed..e965ce8e1cb 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -71,7 +71,19 @@ class Test_DB extends PHPUnit_Framework_TestCase { $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); } - + + public function testLastInsertId() { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); + $result = OC_DB::executeAudited($query, array('insertid 1','uri_1')); + $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); + // we don't know the id we should expect, so insert another row + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); + $result = OC_DB::executeAudited($query, array('insertid 2','uri_2')); + $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); + // now we can check if the two ids are in correct order + $this->assertEquals($id1+1, $id2); + } + public function testinsertIfNotExist() { $categoryentries = array( array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1), -- GitLab From 05fa55f2eb6997f3b59a2418a64447427a1b19ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 13:17:01 +0200 Subject: [PATCH 035/164] always return int --- lib/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db.php b/lib/db.php index e70d66fc2ba..dd48c329490 100644 --- a/lib/db.php +++ b/lib/db.php @@ -344,7 +344,7 @@ class OC_DB { $result = self::executeAudited('SELECT lastval() AS id'); $row = $result->fetchRow(); self::raiseExceptionOnError($row, 'fetching row for insertid failed'); - return $row['id']; + return (int)$row['id']; } else if( $type === 'mssql') { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); @@ -368,7 +368,7 @@ class OC_DB { $result = self::$connection->lastInsertId($table); } self::raiseExceptionOnError($result, 'insertid failed'); - return $result; + return (int)$result; } /** -- GitLab From b8bd1e5a81080a756913e5804b877aafd770f6e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 13:17:25 +0200 Subject: [PATCH 036/164] check type, assertgreaterthan --- tests/lib/db.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index e965ce8e1cb..79e05f30a1c 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -74,14 +74,16 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testLastInsertId() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); - $result = OC_DB::executeAudited($query, array('insertid 1','uri_1')); + $result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1')); $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); + $this->assertInternalType('int', $id1); + // we don't know the id we should expect, so insert another row - $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); - $result = OC_DB::executeAudited($query, array('insertid 2','uri_2')); + $result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2')); $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); // now we can check if the two ids are in correct order - $this->assertEquals($id1+1, $id2); + $this->assertInternalType('int', $id2); + $this->assertGreaterThan($id1, $id2); } public function testinsertIfNotExist() { -- GitLab From 97f2c393c122409f1c90234935a8ebbca962cb44 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 16:33:23 +0300 Subject: [PATCH 037/164] Allow apps to have own 404 content, closes #3225 --- apps/files_sharing/public.php | 5 +++++ apps/files_sharing/templates/part.404.php | 12 ++++++++++++ core/css/styles.css | 12 ++++++++++++ core/templates/404.php | 16 ++++++++++------ 4 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 apps/files_sharing/templates/part.404.php diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 3f8e29345a7..6878109f7b9 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -234,6 +234,11 @@ if (isset($path)) { } else { OCP\Util::writeLog('share', 'could not resolve linkItem', \OCP\Util::DEBUG); } + +$errorTemplate = new OCP\Template('files_sharing', 'part.404', ''); +$errorContent = $errorTemplate->fetchPage(); + header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); +$tmpl->assign('content', $errorContent); $tmpl->printPage(); diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php new file mode 100644 index 00000000000..400dd6bbfd6 --- /dev/null +++ b/apps/files_sharing/templates/part.404.php @@ -0,0 +1,12 @@ +
    + +
\ No newline at end of file diff --git a/core/css/styles.css b/core/css/styles.css index 0dd66fb5b7c..1e2ce3862a3 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -304,6 +304,18 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} +#body-login .error-broken-link{ + text-align:left; +} + +#body-login .error-broken-link ul{ + margin:10px 0 10px 0; +} + +#body-login .error-broken-link ul li{ + list-style: disc;list-style-position:inside; +} + /* Show password toggle */ #show, #dbpassword { position: absolute; diff --git a/core/templates/404.php b/core/templates/404.php index ee17f0de8e1..bf1e03e6bc9 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -7,9 +7,13 @@ if(!isset($_)) {//also provide standalone error page exit; } ?> -
    -
  • - t( 'Cloud not found' )); ?>
    -

    -
  • -
+ + + +
    +
  • + t( 'Cloud not found' )); ?>
    +

    +
  • +
+ -- GitLab From 1faac6108c0c51d28021eb0676db9ad2b94a6f3d Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 29 Jul 2013 10:22:44 -0400 Subject: [PATCH 038/164] Use query to calculate folder size --- lib/files/cache/cache.php | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 458df56141c..c3d11ab4cfe 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -489,19 +489,22 @@ class Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; + $sql = 'SELECT SUM(`size`), MIN(`size`) FROM `*PREFIX*filecache` '. + 'WHERE `parent` = ? AND `storage` = ?'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); - while ($row = $result->fetchRow()) { - $size = (int)$row['size']; - if ($size === -1) { - $totalSize = -1; - break; + if ($row = $result->fetchRow()) { + list($sum, $min) = array_values($row); + $sum = (int)$sum; + $min = (int)$min; + if ($min === -1) { + $totalSize = $min; } else { - $totalSize += $size; + $totalSize = $sum; } - } - if ($entry['size'] !== $totalSize) { - $this->update($id, array('size' => $totalSize)); + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); + } + } } return $totalSize; -- GitLab From afff75001156e38620e08f81cad6372abb54ebb1 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 29 Jul 2013 10:23:14 -0400 Subject: [PATCH 039/164] Add test for calculating size of newly empty folder --- tests/lib/files/cache/cache.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 527c1d1b2a1..247373a5cb9 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -127,6 +127,11 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertEquals(1025, $this->cache->calculateFolderSize($file1)); + $this->cache->remove($file2); + $this->cache->remove($file3); + $this->cache->remove($file4); + $this->assertEquals(0, $this->cache->calculateFolderSize($file1)); + $this->cache->remove('folder'); $this->assertFalse($this->cache->inCache('folder/foo')); $this->assertFalse($this->cache->inCache('folder/bar')); -- GitLab From fbbe0ebe7735222b7e9502585c622ea3f98648c2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:32:37 +0200 Subject: [PATCH 040/164] add function to get config object from OC_Config --- lib/legacy/config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/legacy/config.php b/lib/legacy/config.php index 5294a48ea44..7e498013737 100644 --- a/lib/legacy/config.php +++ b/lib/legacy/config.php @@ -46,6 +46,10 @@ class OC_Config { */ public static $object; + public static function getObject() { + return self::$object; + } + /** * @brief Lists all available config keys * @return array with key names -- GitLab From d6c56b584ac4fdb9169ed2747072d8f90cc00612 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:33:00 +0200 Subject: [PATCH 041/164] make MDB2Schema reader non static --- lib/db/mdb2schemareader.php | 195 +++++++++++++++++++++++------------- lib/db/schema.php | 20 +++- 2 files changed, 143 insertions(+), 72 deletions(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index ad4b2fe0e03..b7128a2f176 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -6,35 +6,57 @@ * See the COPYING-README file. */ -class OC_DB_MDB2SchemaReader { - static protected $DBNAME; - static protected $DBTABLEPREFIX; - static protected $platform; +namespace OC\DB; +class MDB2SchemaReader { /** - * @param $file - * @param $platform + * @var string $DBNAME + */ + protected $DBNAME; + + /** + * @var string $DBTABLEPREFIX + */ + protected $DBTABLEPREFIX; + + /** + * @var \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + protected $platform; + + /** + * @param \OC\Config $config + * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + public function __construct($config, $platform) { + $this->platform = $platform; + $this->DBNAME = $config->getValue('dbname', 'owncloud'); + $this->DBTABLEPREFIX = $config->getValue('dbtableprefix', 'oc_'); + } + + /** + * @param string $file * @return \Doctrine\DBAL\Schema\Schema - * @throws DomainException + * @throws \DomainException */ - public static function loadSchemaFromFile($file, $platform) { - self::$DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - self::$platform = $platform; + public function loadSchemaFromFile($file) { $schema = new \Doctrine\DBAL\Schema\Schema(); $xml = simplexml_load_file($file); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': case 'create': case 'overwrite': case 'charset': break; case 'table': - self::loadTable($schema, $child); + $this->loadTable($schema, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -43,16 +65,20 @@ class OC_DB_MDB2SchemaReader { /** * @param\Doctrine\DBAL\Schema\Schema $schema - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadTable($schema, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadTable($schema, $xml) { + $table = null; + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name ); - $name = self::$platform->quoteIdentifier($name); + $name = str_replace('*dbprefix*', $this->DBTABLEPREFIX, $name); + $name = $this->platform->quoteIdentifier($name); $table = $schema->createTable($name); break; case 'create': @@ -60,10 +86,13 @@ class OC_DB_MDB2SchemaReader { case 'charset': break; case 'declaration': - self::loadDeclaration($table, $child); + if (is_null($table)) { + throw new \DomainException('Table declaration before table name'); + } + $this->loadDeclaration($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -71,36 +100,47 @@ class OC_DB_MDB2SchemaReader { /** * @param \Doctrine\DBAL\Schema\Table $table - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadDeclaration($table, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadDeclaration($table, $xml) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'field': - self::loadField($table, $child); + $this->loadField($table, $child); break; case 'index': - self::loadIndex($table, $child); + $this->loadIndex($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } } - private static function loadField($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadField($table, $xml) { $options = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = self::$platform->quoteIdentifier($name); + $name = $this->platform->quoteIdentifier($name); break; case 'type': $type = (string)$child; - switch($type) { + switch ($type) { case 'text': $type = 'string'; break; @@ -110,8 +150,6 @@ class OC_DB_MDB2SchemaReader { case 'timestamp': $type = 'datetime'; break; - // TODO - return; } break; case 'length': @@ -119,15 +157,15 @@ class OC_DB_MDB2SchemaReader { $options['length'] = $length; break; case 'unsigned': - $unsigned = self::asBool($child); + $unsigned = $this->asBool($child); $options['unsigned'] = $unsigned; break; case 'notnull': - $notnull = self::asBool($child); + $notnull = $this->asBool($child); $options['notnull'] = $notnull; break; case 'autoincrement': - $autoincrement = self::asBool($child); + $autoincrement = $this->asBool($child); $options['autoincrement'] = $autoincrement; break; case 'default': @@ -139,11 +177,11 @@ class OC_DB_MDB2SchemaReader { $options['comment'] = $comment; break; case 'primary': - $primary = self::asBool($child); + $primary = $this->asBool($child); $options['primary'] = $primary; break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -157,25 +195,30 @@ class OC_DB_MDB2SchemaReader { } if ($type == 'integer') { $options['default'] = 0; + } elseif ($type == 'boolean') { + $options['default'] = false; } if (!empty($options['autoincrement']) && $options['autoincrement']) { unset($options['default']); } } - if ($type == 'integer' && isset($options['length'])) { + if ($type === 'integer' && isset($options['default'])) { + $options['default'] = (int)$options['default']; + } + if ($type === 'integer' && isset($options['length'])) { $length = $options['length']; if ($length < 4) { $type = 'smallint'; - } - else if ($length > 4) { + } else if ($length > 4) { $type = 'bigint'; } } - if ($type === 'boolean' && isset($options['default'])){ - $options['default'] = self::asBool($options['default']); + if ($type === 'boolean' && isset($options['default'])) { + $options['default'] = $this->asBool($options['default']); } if (!empty($options['autoincrement']) - && !empty($options['notnull'])) { + && !empty($options['notnull']) + ) { $options['primary'] = true; } $table->addColumn($name, $type, $options); @@ -185,38 +228,49 @@ class OC_DB_MDB2SchemaReader { } } - private static function loadIndex($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadIndex($table, $xml) { $name = null; $fields = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; break; case 'primary': - $primary = self::asBool($child); + $primary = $this->asBool($child); break; case 'unique': - $unique = self::asBool($child); + $unique = $this->asBool($child); break; case 'field': - foreach($child->children() as $field) { - switch($field->getName()) { + foreach ($child->children() as $field) { + /** + * @var \SimpleXMLElement $field + */ + switch ($field->getName()) { case 'name': $field_name = (string)$field; - $field_name = self::$platform->quoteIdentifier($field_name); + $field_name = $this->platform->quoteIdentifier($field_name); $fields[] = $field_name; break; case 'sorting': break; default: - throw new DomainException('Unknown element: '.$field->getName()); + throw new \DomainException('Unknown element: ' . $field->getName()); } } break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -224,22 +278,25 @@ class OC_DB_MDB2SchemaReader { if (isset($primary) && $primary) { $table->setPrimaryKey($fields, $name); } else - if (isset($unique) && $unique) { - $table->addUniqueIndex($fields, $name); - } else { - $table->addIndex($fields, $name); - } + if (isset($unique) && $unique) { + $table->addUniqueIndex($fields, $name); + } else { + $table->addIndex($fields, $name); + } } else { - throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true)); + throw new \DomainException('Empty index definition: ' . $name . ' options:' . print_r($fields, true)); } } - private static function asBool($xml) { + /** + * @param \SimpleXMLElement | string $xml + * @return bool + */ + private function asBool($xml) { $result = (string)$xml; if ($result == 'true') { $result = true; - } else - if ($result == 'false') { + } elseif ($result == 'false') { $result = false; } return (bool)$result; diff --git a/lib/db/schema.php b/lib/db/schema.php index fa053c64ef0..bc82249609d 100644 --- a/lib/db/schema.php +++ b/lib/db/schema.php @@ -24,18 +24,21 @@ class OC_DB_Schema { /** * @brief Creates tables from XML file + * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool * * TODO: write more documentation */ public static function createDbFromStructure( $conn, $file ) { - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); return self::executeSchemaChange($conn, $toSchema); } /** * @brief update the database scheme + * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool */ @@ -43,7 +46,8 @@ class OC_DB_Schema { $sm = $conn->getSchemaManager(); $fromSchema = $sm->createSchema(); - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about foreach($fromSchema->getTables() as $table) { @@ -79,6 +83,7 @@ class OC_DB_Schema { /** * @brief drop a table + * @param \Doctrine\DBAL\Connection $conn * @param string $tableName the table to drop */ public static function dropTable($conn, $tableName) { @@ -92,10 +97,12 @@ class OC_DB_Schema { /** * remove all tables defined in a database structure xml file + * @param \Doctrine\DBAL\Connection $conn * @param string $file the xml file describing the tables */ public static function removeDBStructure($conn, $file) { - $fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; foreach($toSchema->getTables() as $table) { $toSchema->dropTable($table->getName()); @@ -107,6 +114,7 @@ class OC_DB_Schema { /** * @brief replaces the ownCloud tables with a new set + * @param \Doctrine\DBAL\Connection $conn * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $conn, $file ) { @@ -126,11 +134,17 @@ class OC_DB_Schema { self::commit(); } + /** + * @param \Doctrine\DBAL\Connection $conn + * @param \Doctrine\DBAL\Schema\Schema $schema + * @return bool + */ private static function executeSchemaChange($conn, $schema) { $conn->beginTransaction(); foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { $conn->query($sql); } $conn->commit(); + return true; } } -- GitLab From a4df982dc3b2f88078d0ef4a4dbe0fdc1d37105a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:33:27 +0200 Subject: [PATCH 042/164] add tests for MDB2SchemaReader --- tests/lib/db/mdb2schemareader.php | 80 +++++++++++++++++++++++++++++++ tests/lib/db/testschema.xml | 77 +++++++++++++++++++++++++++++ 2 files changed, 157 insertions(+) create mode 100644 tests/lib/db/mdb2schemareader.php create mode 100644 tests/lib/db/testschema.xml diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php new file mode 100644 index 00000000000..b9b241194fd --- /dev/null +++ b/tests/lib/db/mdb2schemareader.php @@ -0,0 +1,80 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\DB; + +use Doctrine\DBAL\Platforms\MySqlPlatform; + +class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { + /** + * @var \OC\DB\MDB2SchemaReader $reader + */ + protected $reader; + + /** + * @return \OC\Config + */ + protected function getConfig() { + $config = $this->getMockBuilder('\OC\Config') + ->disableOriginalConstructor() + ->getMock(); + $config->expects($this->any()) + ->method('getValue') + ->will($this->returnValueMap(array( + array('dbname', 'owncloud', 'testDB'), + array('dbtableprefix', 'oc_', 'test_') + ))); + return $config; + } + + public function testRead() { + $reader = new \OC\DB\MDB2SchemaReader($this->getConfig(), new MySqlPlatform()); + $schema = $reader->loadSchemaFromFile(__DIR__ . '/testschema.xml'); + $this->assertCount(1, $schema->getTables()); + + $table = $schema->getTable('test_table'); + $this->assertCount(7, $table->getColumns()); + + $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); + $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); + $this->assertNull($table->getColumn('integerfield')->getDefault()); + $this->assertTrue($table->getColumn('integerfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\IntegerType', $table->getColumn('integerfield')->getType()); + + $this->assertSame(10, $table->getColumn('integerfield_default')->getDefault()); + + $this->assertEquals(32, $table->getColumn('textfield')->getLength()); + $this->assertFalse($table->getColumn('textfield')->getAutoincrement()); + $this->assertSame('foo', $table->getColumn('textfield')->getDefault()); + $this->assertTrue($table->getColumn('textfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\StringType', $table->getColumn('textfield')->getType()); + + $this->assertNull($table->getColumn('clobfield')->getLength()); + $this->assertFalse($table->getColumn('clobfield')->getAutoincrement()); + $this->assertSame('', $table->getColumn('clobfield')->getDefault()); + $this->assertTrue($table->getColumn('clobfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\TextType', $table->getColumn('clobfield')->getType()); + + $this->assertNull($table->getColumn('booleanfield')->getLength()); + $this->assertFalse($table->getColumn('booleanfield')->getAutoincrement()); + $this->assertFalse($table->getColumn('booleanfield')->getDefault()); + $this->assertInstanceOf('Doctrine\DBAL\Types\BooleanType', $table->getColumn('booleanfield')->getType()); + + $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); + $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + + $this->assertCount(2, $table->getIndexes()); + $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); + $this->assertTrue($table->getIndex('primary')->isPrimary()); + $this->assertTrue($table->getIndex('primary')->isUnique()); + $this->assertEquals(array('booleanfield'), $table->getIndex('index_boolean')->getUnquotedColumns()); + $this->assertFalse($table->getIndex('index_boolean')->isPrimary()); + $this->assertFalse($table->getIndex('index_boolean')->isUnique()); + } +} diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml new file mode 100644 index 00000000000..509b55ee81f --- /dev/null +++ b/tests/lib/db/testschema.xml @@ -0,0 +1,77 @@ + + + + *dbname* + true + false + + utf8 + + + + *dbprefix*table + + + + integerfield + integer + 0 + true + 1 + 4 + + + integerfield_default + integer + 10 + true + 4 + + + textfield + text + foo + true + 32 + + + clobfield + clob + true + + + booleanfield + boolean + + + booleanfield_true + boolean + true + + + booleanfield_false + boolean + false + + + + index_primary + true + true + + integerfield + ascending + + + + + index_boolean + false + + booleanfield + ascending + + + +
+
-- GitLab From dec7b2fa40a7eeb0c0640a798e4c7443d1511bd5 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 17:36:59 +0300 Subject: [PATCH 043/164] Move styles from core to app --- apps/files_sharing/css/404.css | 12 ++++++++++++ apps/files_sharing/public.php | 1 + core/css/styles.css | 12 ------------ 3 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 apps/files_sharing/css/404.css diff --git a/apps/files_sharing/css/404.css b/apps/files_sharing/css/404.css new file mode 100644 index 00000000000..e35e1a5808c --- /dev/null +++ b/apps/files_sharing/css/404.css @@ -0,0 +1,12 @@ + +#body-login .error-broken-link{ + text-align:left;color:#fff; +} + +#body-login .error-broken-link ul{ + margin:10px 0 10px 0; +} + +#body-login .error-broken-link ul li{ + list-style: disc;list-style-position:inside; +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 6878109f7b9..741ab145384 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -239,6 +239,7 @@ $errorTemplate = new OCP\Template('files_sharing', 'part.404', ''); $errorContent = $errorTemplate->fetchPage(); header('HTTP/1.0 404 Not Found'); +OCP\Util::addStyle('files_sharing', '404'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->assign('content', $errorContent); $tmpl->printPage(); diff --git a/core/css/styles.css b/core/css/styles.css index 1e2ce3862a3..0dd66fb5b7c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -304,18 +304,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} -#body-login .error-broken-link{ - text-align:left; -} - -#body-login .error-broken-link ul{ - margin:10px 0 10px 0; -} - -#body-login .error-broken-link ul li{ - list-style: disc;list-style-position:inside; -} - /* Show password toggle */ #show, #dbpassword { position: absolute; -- GitLab From 64774f30baad3165800aa27ebcd660903f7fa3e7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 17:03:57 +0200 Subject: [PATCH 044/164] dont need to explicitly pass by reference --- lib/files/utils/scanner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index da0cbd75f65..7e1bc80bbc4 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -62,10 +62,10 @@ class Scanner extends PublicEmitter { protected function attachListener($mount) { $scanner = $mount->getStorage()->getScanner(); $emitter = $this; - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, &$emitter) { + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, $emitter) { $emitter->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); }); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, &$emitter) { + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, $emitter) { $emitter->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); }); } -- GitLab From dea3472ad77a5ba1941a8d3a636f0cf17257734a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 17:04:28 +0200 Subject: [PATCH 045/164] remove unneeded 'use' --- lib/files/utils/scanner.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index 7e1bc80bbc4..f0dc41ffad3 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -8,7 +8,6 @@ namespace OC\Files\Utils; -use OC\Hooks\BasicEmitter; use OC\Files\Filesystem; use OC\Hooks\PublicEmitter; -- GitLab From a10a17f81857045b991fce3a1754b47608a8a4da Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 18:25:17 +0300 Subject: [PATCH 046/164] Rewording --- apps/files_sharing/templates/part.404.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php index 400dd6bbfd6..b5152e1511a 100644 --- a/apps/files_sharing/templates/part.404.php +++ b/apps/files_sharing/templates/part.404.php @@ -5,7 +5,7 @@
  • t('the item was removed')); ?>
  • t('the link expired')); ?>
  • -
  • t('sharing is disabled for this ownCloud')); ?>
  • +
  • t('sharing is disabled')); ?>

t('For more info, please ask the person who sent this link.')); ?>

-- GitLab From e2d3225e5aff343bf62b6dbb62eb3526e525cb6b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 29 Jul 2013 18:24:05 +0200 Subject: [PATCH 047/164] implement a platform independent version of basename --- lib/files/cache/cache.php | 2 +- lib/util.php | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 3818fdbd840..5b8dc46b771 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -200,7 +200,7 @@ class Cache { $data['path'] = $file; $data['parent'] = $this->getParentId($file); - $data['name'] = basename($file); + $data['name'] = \OC_Util::basename($file); $data['encrypted'] = isset($data['encrypted']) ? ((int)$data['encrypted']) : 0; list($queryParts, $params) = $this->buildParts($data); diff --git a/lib/util.php b/lib/util.php index 981b05b2b46..004470908d1 100755 --- a/lib/util.php +++ b/lib/util.php @@ -892,4 +892,10 @@ class OC_Util { return $value; } + + public static function basename($file) + { + $t = explode('/', $file); + return array_pop($t); + } } -- GitLab From 89f8f8e42d2729254a1b0e06c942af934bee3948 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 29 Jul 2013 18:36:52 +0200 Subject: [PATCH 048/164] app migrate: Use = instead of LIKE as described in the comment above. The LIKE operator is not defined on integers (probably any non-text) columns on PostgreSQL. --- lib/migration/content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/migration/content.php b/lib/migration/content.php index 400a46a4340..2d8268a1d74 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -112,7 +112,7 @@ class OC_Migration_Content{ foreach( $options['matchval'] as $matchval ) { // Run the query for this match value (where x = y value) - $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; + $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` = ?'; $query = OC_DB::prepare( $sql ); $results = $query->execute( array( $matchval ) ); $newreturns = $this->insertData( $results, $options ); -- GitLab From 085fdfec2f298fd89d0265d0f97edfdda5a12954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 29 Jul 2013 23:32:03 +0200 Subject: [PATCH 049/164] adding unit tests for OC_Util::basename --- lib/util.php | 1 + tests/lib/util.php | 32 ++++++++++++++++++++++++-------- 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/lib/util.php b/lib/util.php index 004470908d1..7f7b9f334b4 100755 --- a/lib/util.php +++ b/lib/util.php @@ -895,6 +895,7 @@ class OC_Util { public static function basename($file) { + $file = rtrim($file, '/'); $t = explode('/', $file); return array_pop($t); } diff --git a/tests/lib/util.php b/tests/lib/util.php index 9742d57ac7a..2781ade0990 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -8,12 +8,9 @@ class Test_Util extends PHPUnit_Framework_TestCase { - // Constructor - function Test_Util() { + function testFormatDate() { date_default_timezone_set("UTC"); - } - function testFormatDate() { $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012 11:53'; $this->assertEquals($expected, $result); @@ -61,8 +58,27 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } - function testGetInstanceIdGeneratesValidId() { - OC_Config::deleteKey('instanceid'); - $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); - } + function testGetInstanceIdGeneratesValidId() { + OC_Config::deleteKey('instanceid'); + $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); + } + + /** + * @dataProvider baseNameProvider + */ + public function testBaseName($expected, $file) + { + $base = \OC_Util::basename($file); + $this->assertEquals($expected, $base); + } + + public function baseNameProvider() + { + return array( + array('public_html', '/home/user/public_html/'), + array('public_html', '/home/user/public_html'), + array('', '/'), + array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') + ); + } } -- GitLab From 409268f3227854dab73233a88a114f26b0fed478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 08:54:39 +0200 Subject: [PATCH 050/164] adding test case with no / --- tests/lib/util.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/util.php b/tests/lib/util.php index 2781ade0990..a038538d7ea 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -78,6 +78,7 @@ class Test_Util extends PHPUnit_Framework_TestCase { array('public_html', '/home/user/public_html/'), array('public_html', '/home/user/public_html'), array('', '/'), + array('public_html', 'public_html'), array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') ); } -- GitLab From 17c36b50746555444c34feb70147a5fbc1d6ac3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 10:26:42 +0200 Subject: [PATCH 051/164] fixes #4026 --- core/js/share.js | 30 +++++++++++++++++++++--------- lib/public/share.php | 3 +++ 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index e59669cbc2b..b4b5159b0b5 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -592,8 +592,7 @@ $(document).ready(function() { } // Update the share information - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { - return; + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { }); }); @@ -609,13 +608,26 @@ $(document).ready(function() { }); $(document).on('focusout keyup', '#dropdown #linkPassText', function(event) { - if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), OC.PERMISSION_READ, function() { - console.log("password set to: '" + $('#linkPassText').val() +"' by event: " + event.type); - $('#linkPassText').val(''); - $('#linkPassText').attr('placeholder', t('core', 'Password protected')); + var linkPassText = $('#linkPassText'); + if ( linkPassText.val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { + + var allowPublicUpload = $('#sharingDialogAllowPublicUpload').is(':checked'); + var dropDown = $('#dropdown'); + var itemType = dropDown.data('item-type'); + var itemSource = dropDown.data('item-source'); + var permissions = 0; + + // Calculate permissions + if (allowPublicUpload) { + permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ; + } else { + permissions = OC.PERMISSION_READ; + } + + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, function() { + console.log("password set to: '" + linkPassText.val() +"' by event: " + event.type); + linkPassText.val(''); + linkPassText.attr('placeholder', t('core', 'Password protected')); }); } }); diff --git a/lib/public/share.php b/lib/public/share.php index 596a729a47d..b349dd48776 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -454,6 +454,9 @@ class Share { $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new \PasswordHash(8, $forcePortable); $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password + $shareWith = $checkExists['share_with']; } // Generate token -- GitLab From 6f20e081e47ac5ef2f2dde3f4cc9cdb0bf562283 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 30 Jul 2013 12:48:41 +0200 Subject: [PATCH 052/164] added missing isEmpty ajax file --- apps/files_trashbin/ajax/isEmpty.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 apps/files_trashbin/ajax/isEmpty.php diff --git a/apps/files_trashbin/ajax/isEmpty.php b/apps/files_trashbin/ajax/isEmpty.php new file mode 100644 index 00000000000..2e54c7e77b9 --- /dev/null +++ b/apps/files_trashbin/ajax/isEmpty.php @@ -0,0 +1,14 @@ + array("isEmpty" => $trashStatus))); + + -- GitLab From 853b106bb282684534c64681d1b03d1d6de7513c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 30 Jul 2013 16:01:27 +0200 Subject: [PATCH 053/164] don't create empty versions --- apps/files_versions/lib/versions.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 7c75d70f79c..70b8f30be5c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -101,8 +101,11 @@ class Storage { return false; } - // we should have a source file to work with - if (!$files_view->file_exists($filename)) { + // we should have a source file to work with, and the file shouldn't + // be empty + $fileExists = $files_view->file_exists($filename); + $fileSize = $files_view->filesize($filename); + if ($fileExists === false || $fileSize === 0) { return false; } -- GitLab From 01165fbd2208a0c934dbe58cb4100e8d51fb4f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 17:41:52 +0200 Subject: [PATCH 054/164] use tmpfs at /dev/shm to speedup unit test execution --- autotest.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/autotest.sh b/autotest.sh index abe0b92586c..a343f6a25ab 100755 --- a/autotest.sh +++ b/autotest.sh @@ -10,9 +10,15 @@ DATABASENAME=oc_autotest$EXECUTOR_NUMBER DATABASEUSER=oc_autotest$EXECUTOR_NUMBER ADMINLOGIN=admin$EXECUTOR_NUMBER -DATADIR=data-autotest BASEDIR=$PWD +# use tmpfs for datadir - should speedup unit test execution +if [ -d /dev/shm ]; then + DATADIR=/dev/shm/data-autotest$EXECUTOR_NUMBER +else + DATADIR=$BASEDIR/data-autotest +fi + echo "Using database $DATABASENAME" # create autoconfig for sqlite, mysql and postgresql @@ -24,7 +30,7 @@ cat > ./tests/autoconfig-sqlite.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', ); DELIM @@ -36,7 +42,7 @@ cat > ./tests/autoconfig-mysql.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASEUSER', 'dbname' => '$DATABASENAME', 'dbhost' => 'localhost', @@ -52,7 +58,7 @@ cat > ./tests/autoconfig-pgsql.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASEUSER', 'dbname' => '$DATABASENAME', 'dbhost' => 'localhost', @@ -68,7 +74,7 @@ cat > ./tests/autoconfig-oci.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASENAME', 'dbname' => 'XE', 'dbhost' => 'localhost', -- GitLab From 15e9e95817a2d58951400c8a01ffdd89a573c9b3 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 30 Jul 2013 20:58:21 +0300 Subject: [PATCH 055/164] Use default cursor for list items --- apps/files_sharing/css/404.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/css/404.css b/apps/files_sharing/css/404.css index e35e1a5808c..2ed81df3b86 100644 --- a/apps/files_sharing/css/404.css +++ b/apps/files_sharing/css/404.css @@ -8,5 +8,5 @@ } #body-login .error-broken-link ul li{ - list-style: disc;list-style-position:inside; + list-style: disc;list-style-position:inside;cursor:default; } -- GitLab From 761f40328cdfee6a91c18fdf78e154e36000c251 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 31 Jul 2013 02:01:45 -0400 Subject: [PATCH 056/164] [tx-robot] updated from transifex --- apps/files/l10n/cs_CZ.php | 3 ++ apps/files_encryption/l10n/pt_PT.php | 10 ++++++ apps/files_trashbin/l10n/cs_CZ.php | 1 + apps/files_trashbin/l10n/de.php | 1 + apps/files_trashbin/l10n/de_DE.php | 1 + apps/files_trashbin/l10n/es.php | 1 + apps/files_trashbin/l10n/fi_FI.php | 1 + apps/files_trashbin/l10n/it.php | 1 + apps/files_trashbin/l10n/pt_BR.php | 1 + apps/user_ldap/l10n/da.php | 23 ++++++++++++ apps/user_webdavauth/l10n/cs_CZ.php | 4 ++- core/l10n/sl.php | 1 + l10n/af_ZA/core.po | 20 +++++------ l10n/af_ZA/files_sharing.po | 40 ++++++++++++++++----- l10n/af_ZA/lib.po | 8 ++--- l10n/af_ZA/user_ldap.po | 4 +-- l10n/ar/core.po | 20 +++++------ l10n/ar/files.po | 38 ++++++++++---------- l10n/ar/files_sharing.po | 40 ++++++++++++++++----- l10n/ar/lib.po | 8 ++--- l10n/ar/user_ldap.po | 4 +-- l10n/be/files_sharing.po | 40 ++++++++++++++++----- l10n/bg_BG/core.po | 20 +++++------ l10n/bg_BG/files.po | 38 ++++++++++---------- l10n/bg_BG/files_sharing.po | 40 ++++++++++++++++----- l10n/bg_BG/lib.po | 8 ++--- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 20 +++++------ l10n/bn_BD/files.po | 38 ++++++++++---------- l10n/bn_BD/files_sharing.po | 40 ++++++++++++++++----- l10n/bn_BD/lib.po | 8 ++--- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 20 +++++------ l10n/bs/files_sharing.po | 40 ++++++++++++++++----- l10n/ca/core.po | 20 +++++------ l10n/ca/files.po | 38 ++++++++++---------- l10n/ca/files_sharing.po | 42 +++++++++++++++++----- l10n/ca/lib.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 20 +++++------ l10n/cs_CZ/files.po | 12 +++---- l10n/cs_CZ/files_sharing.po | 30 ++++++++++++++-- l10n/cs_CZ/files_trashbin.po | 9 ++--- l10n/cs_CZ/lib.po | 19 +++++----- l10n/cs_CZ/settings.po | 12 +++---- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cs_CZ/user_webdavauth.po | 11 +++--- l10n/cy_GB/core.po | 20 +++++------ l10n/cy_GB/files.po | 38 ++++++++++---------- l10n/cy_GB/files_sharing.po | 40 ++++++++++++++++----- l10n/cy_GB/lib.po | 8 ++--- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 20 +++++------ l10n/da/files.po | 38 ++++++++++---------- l10n/da/files_sharing.po | 32 ++++++++++++++--- l10n/da/lib.po | 4 +-- l10n/da/user_ldap.po | 53 ++++++++++++++-------------- l10n/de/core.po | 20 +++++------ l10n/de/files.po | 38 ++++++++++---------- l10n/de/files_sharing.po | 42 +++++++++++++++++----- l10n/de/files_trashbin.po | 9 ++--- l10n/de/lib.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 20 +++++------ l10n/de_DE/files.po | 38 ++++++++++---------- l10n/de_DE/files_sharing.po | 42 +++++++++++++++++----- l10n/de_DE/files_trashbin.po | 9 ++--- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 20 +++++------ l10n/el/files.po | 38 ++++++++++---------- l10n/el/files_sharing.po | 40 ++++++++++++++++----- l10n/el/lib.po | 8 ++--- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 38 ++++++++++---------- l10n/en@pirate/files_sharing.po | 40 ++++++++++++++++----- l10n/eo/core.po | 20 +++++------ l10n/eo/files.po | 38 ++++++++++---------- l10n/eo/files_sharing.po | 40 ++++++++++++++++----- l10n/eo/lib.po | 8 ++--- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 20 +++++------ l10n/es/files.po | 38 ++++++++++---------- l10n/es/files_sharing.po | 42 +++++++++++++++++----- l10n/es/files_trashbin.po | 9 ++--- l10n/es/lib.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 20 +++++------ l10n/es_AR/files.po | 38 ++++++++++---------- l10n/es_AR/files_sharing.po | 42 +++++++++++++++++----- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 20 +++++------ l10n/et_EE/files.po | 38 ++++++++++---------- l10n/et_EE/files_sharing.po | 42 +++++++++++++++++----- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 20 +++++------ l10n/eu/files.po | 38 ++++++++++---------- l10n/eu/files_sharing.po | 30 ++++++++++++++-- l10n/eu/lib.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 20 +++++------ l10n/fa/files.po | 38 ++++++++++---------- l10n/fa/files_sharing.po | 42 +++++++++++++++++----- l10n/fa/lib.po | 8 ++--- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 20 +++++------ l10n/fi_FI/files.po | 38 ++++++++++---------- l10n/fi_FI/files_sharing.po | 42 +++++++++++++++++----- l10n/fi_FI/files_trashbin.po | 9 ++--- l10n/fi_FI/lib.po | 8 ++--- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 20 +++++------ l10n/fr/files.po | 38 ++++++++++---------- l10n/fr/files_sharing.po | 42 +++++++++++++++++----- l10n/fr/lib.po | 8 ++--- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 20 +++++------ l10n/gl/files.po | 38 ++++++++++---------- l10n/gl/files_sharing.po | 42 +++++++++++++++++----- l10n/gl/lib.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 20 +++++------ l10n/he/files.po | 38 ++++++++++---------- l10n/he/files_sharing.po | 40 ++++++++++++++++----- l10n/he/lib.po | 8 ++--- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 20 +++++------ l10n/hi/files_sharing.po | 40 ++++++++++++++++----- l10n/hi/lib.po | 8 ++--- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 20 +++++------ l10n/hr/files.po | 38 ++++++++++---------- l10n/hr/files_sharing.po | 40 ++++++++++++++++----- l10n/hr/lib.po | 8 ++--- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 20 +++++------ l10n/hu_HU/files.po | 38 ++++++++++---------- l10n/hu_HU/files_sharing.po | 42 +++++++++++++++++----- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 38 ++++++++++---------- l10n/hy/files_sharing.po | 40 ++++++++++++++++----- l10n/ia/core.po | 20 +++++------ l10n/ia/files.po | 38 ++++++++++---------- l10n/ia/files_sharing.po | 40 ++++++++++++++++----- l10n/ia/lib.po | 8 ++--- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 20 +++++------ l10n/id/files.po | 38 ++++++++++---------- l10n/id/files_sharing.po | 40 ++++++++++++++++----- l10n/id/lib.po | 8 ++--- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 20 +++++------ l10n/is/files.po | 38 ++++++++++---------- l10n/is/files_sharing.po | 40 ++++++++++++++++----- l10n/is/lib.po | 8 ++--- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 20 +++++------ l10n/it/files.po | 38 ++++++++++---------- l10n/it/files_sharing.po | 42 +++++++++++++++++----- l10n/it/files_trashbin.po | 9 ++--- l10n/it/lib.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 20 +++++------ l10n/ja_JP/files.po | 38 ++++++++++---------- l10n/ja_JP/files_sharing.po | 42 +++++++++++++++++----- l10n/ja_JP/lib.po | 8 ++--- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/core.po | 20 +++++------ l10n/ka/files.po | 38 ++++++++++---------- l10n/ka/files_sharing.po | 40 ++++++++++++++++----- l10n/ka/lib.po | 8 ++--- l10n/ka/user_ldap.po | 4 +-- l10n/ka_GE/core.po | 20 +++++------ l10n/ka_GE/files.po | 38 ++++++++++---------- l10n/ka_GE/files_sharing.po | 40 ++++++++++++++++----- l10n/ka_GE/lib.po | 8 ++--- l10n/ka_GE/user_ldap.po | 4 +-- l10n/kn/files_sharing.po | 40 ++++++++++++++++----- l10n/ko/core.po | 20 +++++------ l10n/ko/files.po | 42 +++++++++++----------- l10n/ko/files_sharing.po | 40 ++++++++++++++++----- l10n/ko/lib.po | 8 ++--- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 20 +++++------ l10n/ku_IQ/files.po | 38 ++++++++++---------- l10n/ku_IQ/files_sharing.po | 40 ++++++++++++++++----- l10n/ku_IQ/lib.po | 8 ++--- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 20 +++++------ l10n/lb/files.po | 38 ++++++++++---------- l10n/lb/files_sharing.po | 42 +++++++++++++++++----- l10n/lb/lib.po | 8 ++--- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 20 +++++------ l10n/lt_LT/files.po | 38 ++++++++++---------- l10n/lt_LT/files_sharing.po | 40 ++++++++++++++++----- l10n/lt_LT/lib.po | 8 ++--- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 20 +++++------ l10n/lv/files.po | 38 ++++++++++---------- l10n/lv/files_sharing.po | 40 ++++++++++++++++----- l10n/lv/lib.po | 8 ++--- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 20 +++++------ l10n/mk/files.po | 38 ++++++++++---------- l10n/mk/files_sharing.po | 40 ++++++++++++++++----- l10n/mk/lib.po | 8 ++--- l10n/mk/user_ldap.po | 4 +-- l10n/ml_IN/files_sharing.po | 40 ++++++++++++++++----- l10n/ms_MY/core.po | 20 +++++------ l10n/ms_MY/files.po | 38 ++++++++++---------- l10n/ms_MY/files_sharing.po | 40 ++++++++++++++++----- l10n/ms_MY/lib.po | 8 ++--- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 20 +++++------ l10n/my_MM/files.po | 38 ++++++++++---------- l10n/my_MM/files_sharing.po | 40 ++++++++++++++++----- l10n/my_MM/lib.po | 8 ++--- l10n/my_MM/user_ldap.po | 4 +-- l10n/nb_NO/core.po | 20 +++++------ l10n/nb_NO/files.po | 38 ++++++++++---------- l10n/nb_NO/files_sharing.po | 42 +++++++++++++++++----- l10n/nb_NO/lib.po | 8 ++--- l10n/nb_NO/user_ldap.po | 4 +-- l10n/ne/files_sharing.po | 40 ++++++++++++++++----- l10n/nl/core.po | 20 +++++------ l10n/nl/files.po | 38 ++++++++++---------- l10n/nl/files_sharing.po | 42 +++++++++++++++++----- l10n/nl/lib.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 20 +++++------ l10n/nn_NO/files.po | 38 ++++++++++---------- l10n/nn_NO/files_sharing.po | 40 ++++++++++++++++----- l10n/nn_NO/lib.po | 8 ++--- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 20 +++++------ l10n/oc/files.po | 38 ++++++++++---------- l10n/oc/files_sharing.po | 40 ++++++++++++++++----- l10n/oc/lib.po | 8 ++--- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 20 +++++------ l10n/pl/files.po | 38 ++++++++++---------- l10n/pl/files_sharing.po | 40 ++++++++++++++++----- l10n/pl/lib.po | 8 ++--- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 20 +++++------ l10n/pt_BR/files.po | 38 ++++++++++---------- l10n/pt_BR/files_sharing.po | 42 +++++++++++++++++----- l10n/pt_BR/files_trashbin.po | 9 ++--- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 20 +++++------ l10n/pt_PT/files.po | 38 ++++++++++---------- l10n/pt_PT/files_encryption.po | 26 +++++++------- l10n/pt_PT/files_sharing.po | 42 +++++++++++++++++----- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 20 +++++------ l10n/ro/files.po | 38 ++++++++++---------- l10n/ro/files_sharing.po | 42 +++++++++++++++++----- l10n/ro/lib.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 20 +++++------ l10n/ru/files.po | 38 ++++++++++---------- l10n/ru/files_sharing.po | 42 +++++++++++++++++----- l10n/ru/lib.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 20 +++++------ l10n/si_LK/files.po | 38 ++++++++++---------- l10n/si_LK/files_sharing.po | 40 ++++++++++++++++----- l10n/si_LK/lib.po | 8 ++--- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk/files_sharing.po | 40 ++++++++++++++++----- l10n/sk_SK/core.po | 20 +++++------ l10n/sk_SK/files.po | 38 ++++++++++---------- l10n/sk_SK/files_sharing.po | 40 ++++++++++++++++----- l10n/sk_SK/lib.po | 8 ++--- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 24 ++++++------- l10n/sl/files.po | 38 ++++++++++---------- l10n/sl/files_sharing.po | 40 ++++++++++++++++----- l10n/sl/lib.po | 8 ++--- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 20 +++++------ l10n/sq/files.po | 38 ++++++++++---------- l10n/sq/files_sharing.po | 40 ++++++++++++++++----- l10n/sq/lib.po | 8 ++--- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 20 +++++------ l10n/sr/files.po | 38 ++++++++++---------- l10n/sr/files_sharing.po | 40 ++++++++++++++++----- l10n/sr/lib.po | 8 ++--- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 20 +++++------ l10n/sr@latin/files.po | 38 ++++++++++---------- l10n/sr@latin/files_sharing.po | 40 ++++++++++++++++----- l10n/sr@latin/lib.po | 8 ++--- l10n/sr@latin/user_ldap.po | 4 +-- l10n/sv/core.po | 20 +++++------ l10n/sv/files.po | 38 ++++++++++---------- l10n/sv/files_sharing.po | 42 +++++++++++++++++----- l10n/sv/lib.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/sw_KE/files_sharing.po | 40 ++++++++++++++++----- l10n/ta_LK/core.po | 20 +++++------ l10n/ta_LK/files.po | 38 ++++++++++---------- l10n/ta_LK/files_sharing.po | 40 ++++++++++++++++----- l10n/ta_LK/lib.po | 8 ++--- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 20 +++++------ l10n/te/files_sharing.po | 40 ++++++++++++++++----- l10n/te/lib.po | 8 ++--- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 18 +++++----- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 28 +++++++++++++-- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 20 +++++------ l10n/th_TH/files.po | 38 ++++++++++---------- l10n/th_TH/files_sharing.po | 40 ++++++++++++++++----- l10n/th_TH/lib.po | 8 ++--- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 20 +++++------ l10n/tr/files.po | 38 ++++++++++---------- l10n/tr/files_sharing.po | 40 ++++++++++++++++----- l10n/tr/lib.po | 8 ++--- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 20 +++++------ l10n/ug/files.po | 38 ++++++++++---------- l10n/ug/files_sharing.po | 40 ++++++++++++++++----- l10n/ug/lib.po | 8 ++--- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 20 +++++------ l10n/uk/files.po | 38 ++++++++++---------- l10n/uk/files_sharing.po | 40 ++++++++++++++++----- l10n/uk/lib.po | 8 ++--- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 20 +++++------ l10n/ur_PK/files_sharing.po | 40 ++++++++++++++++----- l10n/ur_PK/lib.po | 8 ++--- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 20 +++++------ l10n/vi/files.po | 38 ++++++++++---------- l10n/vi/files_sharing.po | 40 ++++++++++++++++----- l10n/vi/lib.po | 8 ++--- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 20 +++++------ l10n/zh_CN.GB2312/files.po | 38 ++++++++++---------- l10n/zh_CN.GB2312/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_CN.GB2312/lib.po | 8 ++--- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 20 +++++------ l10n/zh_CN/files.po | 38 ++++++++++---------- l10n/zh_CN/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_CN/lib.po | 8 ++--- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 20 +++++------ l10n/zh_HK/files.po | 38 ++++++++++---------- l10n/zh_HK/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_HK/lib.po | 8 ++--- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 20 +++++------ l10n/zh_TW/files.po | 38 ++++++++++---------- l10n/zh_TW/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_TW/lib.po | 8 ++--- l10n/zh_TW/user_ldap.po | 4 +-- lib/l10n/cs_CZ.php | 4 +++ settings/l10n/cs_CZ.php | 4 +++ 378 files changed, 4903 insertions(+), 2991 deletions(-) diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index c16d32e9c28..3f626d95647 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} složky", "1 file" => "1 soubor", "{count} files" => "{count} soubory", +"%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í", @@ -72,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání", +"directory" => "adresář", +"directories" => "adresáře", "file" => "soubor", "files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index d3cf596fda5..15a9ee6de63 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -5,15 +5,25 @@ "Could not disable recovery key. Please check your recovery key password!" => "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação.", "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.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", +"Missing requirements." => "Faltam alguns requisitos.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado.", "Saving..." => "A guardar...", "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):", +"Recovery key password" => "Chave de recuperação da conta", "Enabled" => "Activado", "Disabled" => "Desactivado", +"Change recovery key password:" => "Alterar a chave de recuperação:", +"Old Recovery key password" => "Chave anterior de recuperação da conta", +"New Recovery key password" => "Nova chave de recuperação da conta", "Change Password" => "Mudar a Password", +"Old log-in password" => "Password anterior da conta", +"Current log-in password" => "Password actual da conta", "Enable password recovery:" => "ativar recuperação do password:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password.", "File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros", "Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 416b6b231d5..6429c90cf5f 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} složky", "1 file" => "1 soubor", "{count} files" => "{count} soubory", +"restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", "Restore" => "Obnovit", "Delete" => "Smazat", diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 4dd9033969e..3c643874723 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", "Restore" => "Wiederherstellen", "Delete" => "Löschen", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 829b5026e1a..47dcedd4bf3 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", "Delete" => "Löschen", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index b2d5a2aed26..d6591713e3b 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", "Restore" => "Recuperar", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index fd6edf398ea..646a000c0d1 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} kansiota", "1 file" => "1 tiedosto", "{count} files" => "{count} tiedostoa", +"restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", "Restore" => "Palauta", "Delete" => "Poista", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 795fd6ea167..769971bb9c8 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} cartelle", "1 file" => "1 file", "{count} files" => "{count} file", +"restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", "Delete" => "Elimina", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 9dad8a40a85..c1a88541b27 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 arquivo", "{count} files" => "{count} arquivos", +"restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", "Restore" => "Restaurar", "Delete" => "Excluir", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index 0a77f466479..71fe042406b 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -1,7 +1,18 @@ "Kunne ikke slette server konfigurationen", +"The configuration is valid and the connection could be established!" => "Konfigurationen er korrekt og forbindelsen kunne etableres!", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer.", "Deletion failed" => "Fejl ved sletning", +"Keep settings?" => "Behold indstillinger?", +"Cannot add server configuration" => "Kan ikke tilføje serverkonfiguration", "Success" => "Succes", "Error" => "Fejl", +"Connection test succeeded" => "Forbindelsestest lykkedes", +"Connection test failed" => "Forbindelsestest mislykkedes", +"Do you really want to delete the current Server Configuration?" => "Ønsker du virkelig at slette den nuværende Server Konfiguration?", +"Confirm Deletion" => "Bekræft Sletning", +"Server configuration" => "Server konfiguration", +"Add Server Configuration" => "Tilføj Server Konfiguration", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", "Base DN" => "Base DN", @@ -12,10 +23,19 @@ "User Login Filter" => "Bruger Login Filter", "User List Filter" => "Brugerliste Filter", "Defines the filter to apply, when retrieving users." => "Definere filteret der bruges ved indlæsning af brugere.", +"without any placeholder, e.g. \"objectClass=person\"." => "Uden stedfortræder, f.eks. \"objectClass=person\".", "Group Filter" => "Gruppe Filter", "Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges når der indlæses grupper.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Uden stedfortræder, f.eks. \"objectClass=posixGroup\".", +"Connection Settings" => "Forbindelsesindstillinger ", +"Configuration Active" => "Konfiguration Aktiv", "Port" => "Port", +"Backup (Replica) Host" => "Backup (Replika) Vært", +"Backup (Replica) Port" => "Backup (Replika) Port", +"Disable Main Server" => "Deaktiver Hovedserver", +"Only connect to the replica server." => "Forbind kun til replika serveren.", "Use TLS" => "Brug TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. ", "Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.", "User Display Name Field" => "User Display Name Field", @@ -23,5 +43,8 @@ "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "in bytes" => "i bytes", +"Email Field" => "Email Felt", +"Internal Username" => "Internt Brugernavn", +"Test Configuration" => "Test Konfiguration", "Help" => "Hjælp" ); diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index 2efde08faf9..e6664d4d7b6 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,3 +1,5 @@ "Ověření WebDAV" +"WebDAV Authentication" => "Ověření WebDAV", +"Address: " => "Adresa:", +"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." => "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 60d3c619fc6..37194c39059 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -110,6 +110,7 @@ "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s posodobite PHP", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 74677c39c98..f310e68c566 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Hulp" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Wolk nie gevind" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index ff1a3d94c28..3bdda434283 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index e89d30f4081..c77f882d7b4 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index b73baa136ab..233404f30fc 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 68f6bff8aa9..07652940cf2 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطأ" @@ -246,7 +246,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -346,23 +346,23 @@ msgstr "حذف" msgid "share" msgstr "مشاركة" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" @@ -461,7 +461,7 @@ msgstr "المساعدة" msgid "Access forbidden" msgstr "التوصّل محظور" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "لم يتم إيجاد" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 8241c682120..2c0edd0e620 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "شارك" msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "إلغاء" @@ -128,7 +128,7 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "قيد الانتظار" @@ -160,11 +160,11 @@ msgstr "تراجع" msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "حجم" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "معدل" @@ -285,45 +285,45 @@ msgstr "مجلد" msgid "From link" msgstr "من رابط" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "لا تملك صلاحيات الكتابة هنا." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "تحميل" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "إلغاء مشاركة" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index d29eee8ffab..34d8af4fdc5 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "تحميل" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "رفع" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index e1901ce0fef..60c4df45eb8 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "المدير" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -257,7 +257,7 @@ msgstr "السنةالماضية" msgid "years ago" msgstr "سنة مضت" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 25433da0854..34874b79943 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index 43b93d5cffe..d8ea6184ffa 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index dc5ce40ade1..36a36158458 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Помощ" msgid "Access forbidden" msgstr "Достъпът е забранен" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "облакът не намерен" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index ae11cb5e63f..c5b052986f1 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Споделяне" msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Изтриване" @@ -128,7 +128,7 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чакащо" @@ -160,11 +160,11 @@ msgstr "възтановяване" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Променено" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 855cf3e040c..88a230e9868 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Качване" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 74cc7751a41..13a54296f95 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" @@ -258,7 +258,7 @@ msgstr "последната година" msgid "years ago" msgstr "последните години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index d57e84a8694..9895f4aa475 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 5343b04fa69..408ffa0ef18 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "সমস্যা" @@ -246,7 +246,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -346,23 +346,23 @@ msgstr "মুছে ফেল" msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" @@ -461,7 +461,7 @@ msgstr "সহায়িকা" msgid "Access forbidden" msgstr "অধিগমনের অনুমতি নেই" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 701192f5811..c651dce787b 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "ভাগাভাগি কর" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "মুছে" @@ -128,7 +128,7 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "মুলতুবি" @@ -160,11 +160,11 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "পরিবর্তিত" @@ -285,45 +285,45 @@ msgstr "ফোল্ডার" msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0633b647221..e16292014d2 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দিন" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index d9e572a75f8..9b7083e5742 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "প্রশাসন" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -257,7 +257,7 @@ msgstr "গত বছর" msgid "years ago" msgstr "বছর পূর্বে" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 776201997c2..72447d825b1 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index b3afdebb160..6400ac456e2 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 6893cf5162b..47ff900767a 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 99980e27dcd..59973b4c649 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -248,7 +248,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error en compartir" @@ -348,23 +348,23 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -463,7 +463,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Accés prohibit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No s'ha trobat el núvol" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index a7ee5b020d3..8bb421127f6 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Esborra" @@ -130,7 +130,7 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendent" @@ -162,11 +162,11 @@ msgstr "desfés" msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxers pujant" @@ -202,15 +202,15 @@ msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -287,45 +287,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index ba3ffec06a6..f160ac69fb4 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Puja" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 1a7a91a544a..6f79f8dd10b 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 29c945320e7..cc362ad68d5 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 5247e92ce85..395269681d3 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 18:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -248,7 +248,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -348,23 +348,23 @@ msgstr "smazat" msgid "share" msgstr "sdílet" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail odeslán" @@ -463,7 +463,7 @@ msgstr "Nápověda" msgid "Access forbidden" msgstr "Přístup zakázán" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nebyl nalezen" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8adab0262b2..36b9af89c6a 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 13:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"Last-Translator: Honza K. \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" @@ -233,7 +233,7 @@ msgstr "{count} soubory" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nemůže být přejmenován" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,11 +331,11 @@ msgstr "Aktuální prohledávání" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "adresář" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "adresáře" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index f2dfc21ea8e..89b4d45ab89 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 14:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,6 +30,30 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 83c9a450e8e..c6dfd407a5c 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:10+0000\n" +"Last-Translator: Honza K. \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" @@ -69,7 +70,7 @@ msgstr "{count} soubory" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "obnoveno" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index d19bbe4bb92..602c1e4dd81 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"Last-Translator: Honza K. \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" @@ -45,16 +46,16 @@ msgstr "Administrace" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Selhalo povýšení verze \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nelze otevřít \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +77,7 @@ msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." #: helper.php:235 msgid "couldn't be determined" @@ -258,9 +259,9 @@ msgstr "minulý rok" msgid "years ago" msgstr "před lety" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Příčina:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 6bf03a6d1fe..fbc9ea3099e 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 19:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:10+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgid "" "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 "" +msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem." #: templates/admin.php:29 msgid "Setup Warning" @@ -219,7 +219,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému." #: templates/admin.php:75 msgid "Internet connection not working" @@ -232,7 +232,7 @@ msgid "" "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 "" +msgstr "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." #: templates/admin.php:92 msgid "Cron" @@ -246,7 +246,7 @@ msgstr "Spustit jednu úlohu s každou načtenou stránkou" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 7a961890f16..0e9b72d3e82 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 19:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 73e152c379e..74eaf816df8 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"Last-Translator: Honza K. \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" @@ -24,11 +25,11 @@ msgstr "Ověření WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adresa:" #: templates/settings.php:7 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 "" +msgstr "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index a7fa993d107..fdf6b56cf73 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Gwall" @@ -247,7 +247,7 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -347,23 +347,23 @@ msgstr "dileu" msgid "share" msgstr "rhannu" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Anfonwyd yr e-bost" @@ -462,7 +462,7 @@ msgstr "Cymorth" msgid "Access forbidden" msgstr "Mynediad wedi'i wahardd" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 285709f347e..13f8ec20f67 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dileu" @@ -128,7 +128,7 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "I ddod" @@ -160,11 +160,11 @@ msgstr "dadwneud" msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -200,15 +200,15 @@ msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Maint" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Addaswyd" @@ -285,45 +285,45 @@ msgstr "Plygell" msgid "From link" msgstr "Dolen o" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 38dd52e5048..c9edfb2a4b9 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Cyfrinair" msgid "Submit" msgstr "Cyflwyno" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index ce21b1417ac..580ccc29020 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Gweinyddu" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -257,7 +257,7 @@ msgstr "y llynedd" msgid "years ago" msgstr "blwyddyn yn ôl" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 62c672e3724..d71262f1e3b 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index cea754530d6..a1a9cdeb1cc 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 13:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -229,7 +229,7 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fejl" @@ -249,7 +249,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fejl under deling" @@ -349,23 +349,23 @@ msgstr "slet" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail afsendt" @@ -464,7 +464,7 @@ msgstr "Hjælp" msgid "Access forbidden" msgstr "Adgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke fundet" diff --git a/l10n/da/files.po b/l10n/da/files.po index e70e70e49e6..957c1b41186 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:55-0400\n" -"PO-Revision-Date: 2013-07-28 13:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slet" @@ -130,7 +130,7 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Afventer" @@ -162,11 +162,11 @@ msgstr "fortryd" msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "uploader filer" @@ -202,15 +202,15 @@ msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ændret" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 5b5cbad702c..a849b738d73 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe , 2013 +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 15:40+0000\n" -"Last-Translator: Sappe \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,30 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 6ca3f462814..aefbe042176 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 18:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 0285beaf6f8..123e7bf0072 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:31+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +24,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Kunne ikke slette server konfigurationen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" #: ajax/testConfiguration.php:39 msgid "" @@ -39,7 +40,7 @@ msgstr "" msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer." #: js/settings.js:66 msgid "Deletion failed" @@ -51,11 +52,11 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Behold indstillinger?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Kan ikke tilføje serverkonfiguration" #: js/settings.js:111 msgid "mappings cleared" @@ -71,19 +72,19 @@ msgstr "Fejl" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "Forbindelsestest lykkedes" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "Forbindelsestest mislykkedes" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "Bekræft Sletning" #: templates/settings.php:9 msgid "" @@ -100,11 +101,11 @@ msgstr "" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "Server konfiguration" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "Tilføj Server Konfiguration" #: templates/settings.php:37 msgid "Host" @@ -172,7 +173,7 @@ msgstr "Definere filteret der bruges ved indlæsning af brugere." #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=person\"." #: templates/settings.php:61 msgid "Group Filter" @@ -184,15 +185,15 @@ msgstr "Definere filteret der bruges når der indlæses grupper." #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=posixGroup\"." #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "Forbindelsesindstillinger " #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "Konfiguration Aktiv" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." @@ -204,7 +205,7 @@ msgstr "Port" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Backup (Replika) Vært" #: templates/settings.php:73 msgid "" @@ -214,15 +215,15 @@ msgstr "" #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Backup (Replika) Port" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "Deaktiver Hovedserver" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Forbind kun til replika serveren." #: templates/settings.php:76 msgid "Use TLS" @@ -230,7 +231,7 @@ msgstr "Brug TLS" #: templates/settings.php:76 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. " #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" @@ -329,7 +330,7 @@ msgstr "i bytes" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "Email Felt" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" @@ -343,7 +344,7 @@ msgstr "" #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Internt Brugernavn" #: templates/settings.php:102 msgid "" @@ -412,7 +413,7 @@ msgstr "" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "Test Konfiguration" #: templates/settings.php:111 msgid "Help" diff --git a/l10n/de/core.po b/l10n/de/core.po index b6ea04d4be0..be3e99d64e9 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -233,7 +233,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -253,7 +253,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -353,23 +353,23 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -468,7 +468,7 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nicht gefunden" diff --git a/l10n/de/files.po b/l10n/de/files.po index 0d09722c430..f4ddfb57c14 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" @@ -132,7 +132,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" @@ -164,11 +164,11 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -204,15 +204,15 @@ msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas d msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" @@ -289,45 +289,45 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8ca29758236..5c739090529 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Pwnicorn \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 100d4b686b2..e18f6c8e8c8 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 385b7e941c6..21052b6f836 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a7ea39ff991..849befa1d91 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 41273fc6761..620585599ac 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -232,7 +232,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -252,7 +252,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -352,23 +352,23 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email gesendet" @@ -467,7 +467,7 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 335e18d400e..bf0b8666ab6 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -127,7 +127,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" @@ -135,7 +135,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" @@ -167,11 +167,11 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -207,15 +207,15 @@ msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas da msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" @@ -292,45 +292,45 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 7b10322cb55..533360cd7f4 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Bestätigen" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 249c0025674..a4e20c81296 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e6b3c139bcc..484c8ff3ab1 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 8dd1d4905f5..c5b9e86c3ad 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 59ed3f88906..7269021fb85 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -233,7 +233,7 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Σφάλμα" @@ -253,7 +253,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -353,23 +353,23 @@ msgstr "διαγραφή" msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -468,7 +468,7 @@ msgstr "Βοήθεια" msgid "Access forbidden" msgstr "Δεν επιτρέπεται η πρόσβαση" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" diff --git a/l10n/el/files.po b/l10n/el/files.po index 7b76ec92eee..c1b8a30a179 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Διαμοιρασμός" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Διαγραφή" @@ -129,7 +129,7 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Εκκρεμεί" @@ -161,11 +161,11 @@ msgstr "αναίρεση" msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -201,15 +201,15 @@ msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να π msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -286,45 +286,45 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Λήψη" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index a307bdbb8ba..69db46394c1 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Λήψη" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 47a64c55113..d323798d0e1 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Διαχειριστής" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -258,7 +258,7 @@ msgstr "τελευταίο χρόνο" msgid "years ago" msgstr "χρόνια πριν" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 05ce6737e67..9b8fe33a4b4 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 740b4463640..d8208942860 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 8fae1af4ef4..0c43f6a0511 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Secret Code" msgid "Submit" msgstr "Submit" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 48bfcc7c8b2..3cdd5ac74b3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eraro" @@ -248,7 +248,7 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -348,23 +348,23 @@ msgstr "forigi" msgid "share" msgstr "kunhavigi" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -463,7 +463,7 @@ msgstr "Helpo" msgid "Access forbidden" msgstr "Aliro estas malpermesata" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "La nubo ne estas trovita" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index da2b56bf100..3d476702c3a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Forigi" @@ -129,7 +129,7 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Traktotaj" @@ -161,11 +161,11 @@ msgstr "malfari" msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -201,15 +201,15 @@ msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosiero msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifita" @@ -286,45 +286,45 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vi ne havas permeson skribi ĉi tie." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 84941f56304..c66399b2a68 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 60028aadc88..72bd41c4505 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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,7 +47,7 @@ msgstr "Administranto" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -258,7 +258,7 @@ msgstr "lastajare" msgid "years ago" msgstr "jaroj antaŭe" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 7c3f90fac39..68d47eba35a 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index eafc2f50f6d..f121edd4a2c 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 17:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,7 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -254,7 +254,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error mientras comparte" @@ -354,23 +354,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -469,7 +469,7 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encuentra la nube" diff --git a/l10n/es/files.po b/l10n/es/files.po index 76f2641b276..66676ffbc8e 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -125,7 +125,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -133,7 +133,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendiente" @@ -165,11 +165,11 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "subiendo archivos" @@ -205,15 +205,15 @@ msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si l msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -290,45 +290,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 6aaaffdefa0..d9673bd20f5 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 4ab3533b604..e3ed8dcb356 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 18:40+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +71,7 @@ msgstr "{count} archivos" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "recuperado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9c16a30b4d2..1c79d179b6e 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 17:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 4b2d6d62491..4dec487073e 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 7bcbd0813c4..94bf3047000 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -247,7 +247,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al compartir" @@ -347,23 +347,23 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "e-mail mandado" @@ -462,7 +462,7 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encontró ownCloud" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index f85b60d7451..0353e620770 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Borrar" @@ -130,7 +130,7 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendientes" @@ -162,11 +162,11 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Llevar a cabo borrado" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Subiendo archivos" @@ -202,15 +202,15 @@ msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -287,45 +287,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index c5f5deb302c..3c16c141148 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index fa6c2467e97..06e8c040a64 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index a78e6c2e490..82d48a7e1ba 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 53d2e6127b3..1a87d829d28 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Viga" @@ -248,7 +248,7 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -348,23 +348,23 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-kiri on saadetud" @@ -463,7 +463,7 @@ msgstr "Abiinfo" msgid "Access forbidden" msgstr "Ligipääs on keelatud" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilve ei leitud" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 4f6132eeb37..f516fc66a07 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Kustuta" @@ -130,7 +130,7 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ootel" @@ -162,11 +162,11 @@ msgstr "tagasi" msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -202,15 +202,15 @@ msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu su msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muudetud" @@ -287,45 +287,45 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lae alla" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 42361100f7d..fce075d2247 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lae alla" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 98146ef2253..99e2c16249d 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/user_ldap.po b/l10n/et_EE/user_ldap.po index 10fdbed025b..7a5b2570f28 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 5c3082a80b6..1f660f06429 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errorea" @@ -248,7 +248,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -348,23 +348,23 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta bidalia" @@ -463,7 +463,7 @@ msgstr "Laguntza" msgid "Access forbidden" msgstr "Sarrera debekatuta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index f740c546a44..beb0bcad9f0 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ezabatu" @@ -129,7 +129,7 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Zain" @@ -161,11 +161,11 @@ msgstr "desegin" msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -201,15 +201,15 @@ msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" @@ -286,45 +286,45 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index f2ce11b7cef..9629a3e4610 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,30 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d91ea3a9662..06423f2d254 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 08:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 70f48584122..002bc4dfdb9 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 8909d8750f8..9cfd8ce0849 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطا" @@ -247,7 +247,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -347,23 +347,23 @@ msgstr "پاک کردن" msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -462,7 +462,7 @@ msgstr "راه‌نما" msgid "Access forbidden" msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "پیدا نشد" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 76429a8c3be..c8525694852 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "اشتراک‌گذاری" msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "حذف" @@ -129,7 +129,7 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "در انتظار" @@ -161,11 +161,11 @@ msgstr "بازگشت" msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -201,15 +201,15 @@ msgstr "دانلود شما در حال آماده شدن است. در صورت msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "تاریخ" @@ -286,45 +286,45 @@ msgstr "پوشه" msgid "From link" msgstr "از پیوند" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "شما اجازه ی نوشتن در اینجا را ندارید" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "دانلود" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "لغو اشتراک" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 76c7865d816..a7d90d416ca 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "دانلود" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index ecfe7c69a3b..3c8ebb5e499 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "مدیر" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -258,7 +258,7 @@ msgstr "سال قبل" msgid "years ago" msgstr "سال‌های قبل" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 07127fe3c00..4d5bfef0de7 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 6bee44d1903..09db5dddc5a 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 06:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Virhe" @@ -247,7 +247,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -347,23 +347,23 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -462,7 +462,7 @@ msgstr "Ohje" msgid "Access forbidden" msgstr "Pääsy estetty" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilveä ei löydy" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 9181d3631a4..72d5809a58e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Poista" @@ -129,7 +129,7 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Odottaa" @@ -161,11 +161,11 @@ msgstr "kumoa" msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -201,15 +201,15 @@ msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muokattu" @@ -286,45 +286,45 @@ msgstr "Kansio" msgid "From link" msgstr "Linkistä" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lataa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 317486daa3f..64ef882ea6e 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lataa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 463d965737b..2b355bfe39f 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 06:10+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" @@ -69,7 +70,7 @@ msgstr "{count} tiedostoa" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "palautettu" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ca512563c65..e84f005d6a5 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Ylläpitäjä" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -258,7 +258,7 @@ msgstr "viime vuonna" msgid "years ago" msgstr "vuotta sitten" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index fe9736f8089..8dbf5fe8945 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index da213b7868d..5ea8804ed83 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -231,7 +231,7 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erreur" @@ -251,7 +251,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -351,23 +351,23 @@ msgstr "supprimer" msgid "share" msgstr "partager" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email envoyé" @@ -466,7 +466,7 @@ msgstr "Aide" msgid "Access forbidden" msgstr "Accès interdit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Introuvable" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5cc9e734620..c4babaecdd9 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -123,7 +123,7 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Supprimer" @@ -131,7 +131,7 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "En attente" @@ -163,11 +163,11 @@ msgstr "annuler" msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -203,15 +203,15 @@ msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifié" @@ -288,45 +288,45 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Télécharger" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3991b7e5236..4c41bc8d54c 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: square \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Télécharger" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index dcb8bc19a2b..1bd46de75e0 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "services web sous votre contrôle" @@ -258,7 +258,7 @@ msgstr "l'année dernière" msgid "years ago" msgstr "il y a plusieurs années" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 3d914eb3c70..bcfe7e3e19d 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 735075719cc..6ad071c4017 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -227,7 +227,7 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -247,7 +247,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -347,23 +347,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Correo enviado" @@ -462,7 +462,7 @@ msgstr "Axuda" msgid "Access forbidden" msgstr "Acceso denegado" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non atopada" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b4676e5d42f..79c63c38697 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -129,7 +129,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendentes" @@ -161,11 +161,11 @@ msgstr "desfacer" msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ficheiros enviándose" @@ -201,15 +201,15 @@ msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -286,45 +286,45 @@ msgstr "Cartafol" msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f2c53603c68..3a02212cd62 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Enviar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 59aeeae8efa..f3fe2b82a13 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 06:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 73ad4feb1e6..37342000f69 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 11:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 5aab5ba861c..e67ba8ad751 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "שגיאה" @@ -247,7 +247,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -347,23 +347,23 @@ msgstr "מחיקה" msgid "share" msgstr "שיתוף" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -462,7 +462,7 @@ msgstr "עזרה" msgid "Access forbidden" msgstr "הגישה נחסמה" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ענן לא נמצא" diff --git a/l10n/he/files.po b/l10n/he/files.po index e98a0126d15..83a9b3df429 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "שתף" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "מחיקה" @@ -129,7 +129,7 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "ממתין" @@ -161,11 +161,11 @@ msgstr "ביטול" msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -201,15 +201,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "זמן שינוי" @@ -286,45 +286,45 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "הורדה" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "הסר שיתוף" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index ed15a0077f5..aa4b887ee24 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "סיסמא" msgid "Submit" msgstr "שליחה" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "הורדה" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "העלאה" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index bb79451d05b..2830a8eab81 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "מנהל" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -257,7 +257,7 @@ msgstr "שנה שעברה" msgid "years ago" msgstr "שנים" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 963a7defc75..f8685835767 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 1885e83cf20..4a16892033f 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "त्रुटि" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -347,23 +347,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -462,7 +462,7 @@ msgstr "सहयोग" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "क्लौड नहीं मिला " diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 374cd748474..d2f33421d86 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "पासवर्ड" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 4c585172851..ab9714261e9 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index c943c1679ce..cc861519d23 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 4ec6c0bfd82..3a61a6b8642 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Greška" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -346,23 +346,23 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "Pristup zabranjen" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nije pronađen" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c9259858fde..d14de3d50eb 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Obriši" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "U tijeku" @@ -160,11 +160,11 @@ msgstr "vrati" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" @@ -285,45 +285,45 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 060175dfc04..3b41ad7c0f2 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d7ad1c61c97..c866a1a2028 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -257,7 +257,7 @@ msgstr "prošlu godinu" msgid "years ago" msgstr "godina" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 2d361d82bb8..74a0ad121a7 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 92d3fb95e78..ce7f4a8f031 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 18:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hiba" @@ -248,7 +248,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -348,23 +348,23 @@ msgstr "töröl" msgid "share" msgstr "megoszt" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -463,7 +463,7 @@ msgstr "Súgó" msgid "Access forbidden" msgstr "A hozzáférés nem engedélyezett" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "A felhő nem található" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ffe9dd4a97b..2fa09f0b3cc 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Törlés" @@ -129,7 +129,7 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Folyamatban" @@ -161,11 +161,11 @@ msgstr "visszavonás" msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fájl töltődik föl" @@ -201,15 +201,15 @@ msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Módosítva" @@ -286,45 +286,45 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Letöltés" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 3c44de68d36..0d018aba9bb 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Letöltés" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 728130342ca..f103a4224dc 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 19:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index c9d9d73f588..28f951cefba 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index df5bafb76cd..7c8ddc7cacc 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ջնջել" @@ -128,7 +128,7 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index b0ff019c8d5..0ddb2f6bb99 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "Հաստատել" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 8e8c1d777b9..a552d39009c 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Adjuta" msgid "Access forbidden" msgstr "Accesso prohibite" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non trovate" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 02cad9734fc..9573d287a0a 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Deler" @@ -128,7 +128,7 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificate" @@ -285,45 +285,45 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Discargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2247eb9098f..940bd354de5 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Contrasigno" msgid "Submit" msgstr "Submitter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Discargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Incargar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 283c448b8e6..6e47ee9dae0 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 69e81595ead..901092e5e3c 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 177a8b8a1cd..092d01d17e0 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Galat" @@ -246,7 +246,7 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -346,23 +346,23 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email terkirim" @@ -461,7 +461,7 @@ msgstr "Bantuan" msgid "Access forbidden" msgstr "Akses ditolak" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud tidak ditemukan" diff --git a/l10n/id/files.po b/l10n/id/files.po index d200700fe9b..6403ada6b74 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Hapus" @@ -128,7 +128,7 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Menunggu" @@ -160,11 +160,11 @@ msgstr "urungkan" msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "berkas diunggah" @@ -200,15 +200,15 @@ msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jik msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" @@ -285,45 +285,45 @@ msgstr "Folder" msgid "From link" msgstr "Dari tautan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Unduh" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 6741367871d..793bcb2e756 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Sandi" msgid "Submit" msgstr "Kirim" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Unduh" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Unggah" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 7d7e86cd29a..1866b3b7985 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "layanan web dalam kontrol Anda" @@ -257,7 +257,7 @@ msgstr "tahun kemarin" msgid "years ago" msgstr "beberapa tahun lalu" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 2cf3f355a05..da1981e766d 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 4d63b5e0f0a..a02b8f3fae1 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Villa" @@ -247,7 +247,7 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -347,23 +347,23 @@ msgstr "eyða" msgid "share" msgstr "deila" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -462,7 +462,7 @@ msgstr "Hjálp" msgid "Access forbidden" msgstr "Aðgangur bannaður" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ský finnst ekki" diff --git a/l10n/is/files.po b/l10n/is/files.po index 29c1fd71635..86b12e0fd21 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eyða" @@ -128,7 +128,7 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bíður" @@ -160,11 +160,11 @@ msgstr "afturkalla" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Breytt" @@ -285,45 +285,45 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d27d881ebb1..e01d766773c 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index ad927007a61..4df8009d677 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Stjórnun" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -257,7 +257,7 @@ msgstr "síðasta ári" msgid "years ago" msgstr "einhverjum árum" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 69d38cfaa3d..7c34f34cd0c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 9d25e7fd0ba..7980040fb44 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -229,7 +229,7 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errore" @@ -249,7 +249,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -349,23 +349,23 @@ msgstr "elimina" msgid "share" msgstr "condividi" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Messaggio inviato" @@ -464,7 +464,7 @@ msgstr "Aiuto" msgid "Access forbidden" msgstr "Accesso negato" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nuvola non trovata" diff --git a/l10n/it/files.po b/l10n/it/files.po index 26223099486..2c86ca8c3c1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimina" @@ -130,7 +130,7 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In corso" @@ -162,11 +162,11 @@ msgstr "annulla" msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "caricamento file" @@ -202,15 +202,15 @@ msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificato" @@ -287,45 +287,45 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Scarica" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 5f93f56ae9c..f0c9490e2c0 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -31,28 +31,52 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Scarica" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carica" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 157e29b6156..19d8c8f15d3 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 06:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} file" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "ripristinati" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index e99e2c2da9d..8562c1b2dff 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 50fc73cb9c3..e42ed7790d5 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 4289e47fc2d..1b26070dc65 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "エラー" @@ -248,7 +248,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -348,23 +348,23 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "メールを送信しました" @@ -463,7 +463,7 @@ msgstr "ヘルプ" msgid "Access forbidden" msgstr "アクセスが禁止されています" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "見つかりません" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 4872df04800..99861df793d 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -124,7 +124,7 @@ msgstr "共有" msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "削除" @@ -132,7 +132,7 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "中断" @@ -164,11 +164,11 @@ msgstr "元に戻す" msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -204,15 +204,15 @@ msgstr "ダウンロードの準備中です。ファイルサイズが大きい msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "変更" @@ -289,45 +289,45 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "削除ファイル" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "あなたには書き込み権限がありません。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "共有解除" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index bd7180154d8..73d3652d5af 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "アップロード" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a9bfe0203ff..63e44f14693 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "管理下のウェブサービス" @@ -258,7 +258,7 @@ msgstr "一年前" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 73e9bc05c1e..1c8c1b407c6 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index cb5459f4797..7bfb35fbc74 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "შველა" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 75dfc85d93e..8f64ae7fb1a 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index ffe0413a6ba..d03fb2074c5 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 5cfcfa245f7..be614d19be4 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 48f5ec17580..f2b7389faa3 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ff60e8f555d..e74124b1f2b 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "შეცდომა" @@ -246,7 +246,7 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -346,23 +346,23 @@ msgstr "წაშლა" msgid "share" msgstr "გაზიარება" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "იმეილი გაიგზავნა" @@ -461,7 +461,7 @@ msgstr "დახმარება" msgid "Access forbidden" msgstr "წვდომა აკრძალულია" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 480242c4e5a..918d7d6d172 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "გაზიარება" msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "წაშლა" @@ -128,7 +128,7 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -160,11 +160,11 @@ msgstr "დაბრუნება" msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -200,15 +200,15 @@ msgstr "გადმოწერის მოთხოვნა მუშავ msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ზომა" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "შეცვლილია" @@ -285,45 +285,45 @@ msgstr "საქაღალდე" msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "გაუზიარებადი" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 58d9060e662..349d781cc97 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 499f821fb1f..90083f3cfd2 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web services under your control" @@ -257,7 +257,7 @@ msgstr "ბოლო წელს" msgid "years ago" msgstr "წლის წინ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 9dd4877fc38..04c7538f51a 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index 2d27aa7fc36..b4ca5343314 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 7335f8e13a4..15b5a442595 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "오류" @@ -248,7 +248,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -348,23 +348,23 @@ msgstr "삭제" msgid "share" msgstr "공유" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "이메일 발송됨" @@ -463,7 +463,7 @@ msgstr "도움말" msgid "Access forbidden" msgstr "접근 금지됨" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 815af6c08d9..634e6e3dc27 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ujuc Gang , 2013 -# ujuc Gang , 2013 +# Sungjin Gang , 2013 +# Sungjin Gang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "공유" msgid "Delete permanently" msgstr "영원히 삭제" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "삭제" @@ -130,7 +130,7 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "대기 중" @@ -162,11 +162,11 @@ msgstr "되돌리기" msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "파일 업로드중" @@ -202,15 +202,15 @@ msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "크기" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "수정됨" @@ -287,45 +287,45 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "파일 삭제됨" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "다운로드" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "공유 해제" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 10bb8308d04..98a35975c04 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "다운로드" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "업로드" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 720609c125c..e94791c18e5 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "관리자" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" @@ -258,7 +258,7 @@ msgstr "작년" msgid "years ago" msgstr "년 전" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b17eaf1dbee..ad8ee3ed2a6 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index d7eb59f7ed6..7a4da675640 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "هه‌ڵه" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "یارمەتی" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "هیچ نه‌دۆزرایه‌وه‌" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index e8a982abd88..925646a6bcd 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "داگرتن" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 5cde0384b4d..b7314e7946c 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "وشەی تێپەربو" msgid "Submit" msgstr "ناردن" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "داگرتن" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 3c562c92d4c..9274ba255a6 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 2db7dfc5d0a..1ff61722118 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 5a52b6187de..24120db9714 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feeler" @@ -247,7 +247,7 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -347,23 +347,23 @@ msgstr "läschen" msgid "share" msgstr "deelen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email geschéckt" @@ -462,7 +462,7 @@ msgstr "Hëllef" msgid "Access forbidden" msgstr "Zougrëff net erlaabt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud net fonnt" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 245cac9d4af..1c581ddf78a 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Läschen" @@ -128,7 +128,7 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "réckgängeg man" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geännert" @@ -285,45 +285,45 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 1575fc1547d..1b02b6939f2 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: llaera \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwuert" msgid "Submit" msgstr "Fortschécken" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Keeng Preview do fir" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 12f02c1dd41..3a82a7edf77 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -258,7 +258,7 @@ msgstr "Läscht Joer" msgid "years ago" msgstr "Joren hier" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 2d45e246d29..b67486d75b3 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ab6fcfab47c..0ff3d16d683 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Klaida" @@ -248,7 +248,7 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -348,23 +348,23 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Laiškas išsiųstas" @@ -463,7 +463,7 @@ msgstr "Pagalba" msgid "Access forbidden" msgstr "Priėjimas draudžiamas" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Negalima rasti" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ce705267f92..6396841d213 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ištrinti" @@ -129,7 +129,7 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Laukiantis" @@ -161,11 +161,11 @@ msgstr "anuliuoti" msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "įkeliami failai" @@ -201,15 +201,15 @@ msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunč msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Pakeista" @@ -286,45 +286,45 @@ msgstr "Katalogas" msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jūs neturite rašymo leidimo." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c6d59f11cd3..ac8a3687549 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Slaptažodis" msgid "Submit" msgstr "Išsaugoti" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c91fa67de3c..352a441e3c3 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administravimas" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" @@ -258,7 +258,7 @@ msgstr "praeitais metais" msgid "years ago" msgstr "prieš metus" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 1be664cebcd..cc4485baa5d 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 146ad3890cb..4ee5542d592 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Kļūda" @@ -246,7 +246,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -346,23 +346,23 @@ msgstr "dzēst" msgid "share" msgstr "dalīties" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -461,7 +461,7 @@ msgstr "Palīdzība" msgid "Access forbidden" msgstr "Pieeja ir liegta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Mākonis netika atrasts" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 9452a9c8478..b1698a93e05 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dzēst" @@ -128,7 +128,7 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Gaida savu kārtu" @@ -160,11 +160,11 @@ msgstr "atsaukt" msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Izmērs" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Mainīts" @@ -285,45 +285,45 @@ msgstr "Mape" msgid "From link" msgstr "No saites" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 260a895ad74..8a2763ec51c 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Parole" msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index bf2fd831db6..5c952891c4c 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administratori" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -257,7 +257,7 @@ msgstr "gājušajā gadā" msgid "years ago" msgstr "gadus atpakaļ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 92dd810cdda..2bd8f6842d9 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index bab8937ac23..3dc2cdcab4a 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -346,23 +346,23 @@ msgstr "избриши" msgid "share" msgstr "сподели" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Е-порака пратена" @@ -461,7 +461,7 @@ msgstr "Помош" msgid "Access forbidden" msgstr "Забранет пристап" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облакот не е најден" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 15ac727406a..33f61785d3f 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Сподели" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Избриши" @@ -128,7 +128,7 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чека" @@ -160,11 +160,11 @@ msgstr "врати" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Променето" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Преземи" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Не споделувај" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 726a5e18b7f..ac0efb09ea1 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преземи" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Подигни" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 836a3490761..dbe4359e4cf 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -257,7 +257,7 @@ msgstr "минатата година" msgid "years ago" msgstr "пред години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index a3e8985fa6e..b85bbf1e565 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index dbf8befe5f9..088c381190f 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 74c4ed00318..2c377e673df 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ralat" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Bantuan" msgid "Access forbidden" msgstr "Larangan akses" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Awan tidak dijumpai" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 30702361ddd..1cad5bda691 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Padam" @@ -128,7 +128,7 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Dalam proses" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" @@ -285,45 +285,45 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Muat turun" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index cbc98cfdb5e..ca3a8ca1f2e 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Kata laluan" msgid "Submit" msgstr "Hantar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Muat turun" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index d0deb26d3fa..7e64969eb06 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 290acb297ba..ac60e6d8b99 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 1d1bd2e7148..3b725afd1b7 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "ဖျက်မည်" msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "အကူအညီ" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index c7aec58aa31..6b951723bfd 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 7cf20920a72..640fd07c17a 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "စကားဝှက်" msgid "Submit" msgstr "ထည့်သွင်းမည်" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 5b05b4a9110..cd8ea13538f 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "အက်ဒမင်" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -257,7 +257,7 @@ msgstr "မနှစ်က" msgid "years ago" msgstr "နှစ် အရင်က" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 4cb821a8db8..1d0a51d4a3e 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 22ee3db46c4..d65bf7c1684 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feil" @@ -247,7 +247,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil under deling" @@ -347,23 +347,23 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -462,7 +462,7 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang nektet" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke funnet" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a3d0e3fdf39..e5b14ff8f89 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ventende" @@ -162,11 +162,11 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastes opp" @@ -202,15 +202,15 @@ msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endret" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skrivetilgang her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 4e20072c191..ed32d42f6c8 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stein-Aksel Basma \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 771095599f9..71ab9aec2b5 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web tjenester du kontrollerer" @@ -257,7 +257,7 @@ msgstr "forrige år" msgid "years ago" msgstr "år siden" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ed9414cb2ec..c4942645d36 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 4dc2fd5cd44..8f745e77bbe 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 11f2fa2b7af..2041e32605d 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fout" @@ -248,7 +248,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -348,23 +348,23 @@ msgstr "verwijderen" msgid "share" msgstr "deel" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail verzonden" @@ -463,7 +463,7 @@ msgstr "Help" msgid "Access forbidden" msgstr "Toegang verboden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud niet gevonden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9ccf2501fec..02a39f9a880 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Verwijder" @@ -129,7 +129,7 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In behandeling" @@ -161,11 +161,11 @@ msgstr "ongedaan maken" msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -201,15 +201,15 @@ msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestand msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grootte" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aangepast" @@ -286,45 +286,45 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Downloaden" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 694d58f3491..8223ec70b18 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Downloaden" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 5e7af88a23a..242adb3fe13 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 7c9429c3540..1fbf3553a88 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 0fcbde93026..181d16dc839 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feil" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil ved deling" @@ -348,23 +348,23 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -463,7 +463,7 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Fann ikkje skyen" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 5c8ea2aa317..1508b5b0a51 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Under vegs" @@ -162,11 +162,11 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastar opp" @@ -202,15 +202,15 @@ msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endra" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikkje skriverettar her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Udel" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 636d57bd689..8ae98be0ca3 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 3ca8a975f7a..72832d20138 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrer" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -258,7 +258,7 @@ msgstr "i fjor" msgid "years ago" msgstr "år sidan" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 888152a0e12..b70768d7dea 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index f7f6fb8762a..309f87a7094 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al partejar" @@ -346,23 +346,23 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acces enebit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nívol pas trobada" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 7963637bb49..950eb920b53 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Escafa" @@ -128,7 +128,7 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Al esperar" @@ -160,11 +160,11 @@ msgstr "defar" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -285,45 +285,45 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index aff7086e917..d8f6bb9a866 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Senhal" msgid "Submit" msgstr "Sosmetre" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 9fd1bfbc343..758bf58b230 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -257,7 +257,7 @@ msgstr "an passat" msgid "years ago" msgstr "ans a" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 94e56e4b2a6..a28bd120b8f 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 6ddef20473c..7f493d24ba3 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Błąd" @@ -248,7 +248,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -348,23 +348,23 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail wysłany" @@ -463,7 +463,7 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Dostęp zabroniony" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nie odnaleziono chmury" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3d1c0da649d..4b137554e6f 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Usuń" @@ -130,7 +130,7 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Oczekujące" @@ -162,11 +162,11 @@ msgstr "cofnij" msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "pliki wczytane" @@ -202,15 +202,15 @@ msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pl msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modyfikacja" @@ -287,45 +287,45 @@ msgstr "Folder" msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Pobierz" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index fd067dfc86d..9ca97e16026 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Hasło" msgid "Submit" msgstr "Wyślij" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Pobierz" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 69554bc77cf..e4a600dd108 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Kontrolowane serwisy" @@ -258,7 +258,7 @@ msgstr "w zeszłym roku" msgid "years ago" msgstr "lat temu" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 65f5dbf6399..dcd7013f692 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 72f480100da..35b7103dc3d 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 12:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -348,23 +348,23 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -463,7 +463,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso proibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud não encontrado" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 6571b85a956..90375a93ab9 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -123,7 +123,7 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Excluir" @@ -131,7 +131,7 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" @@ -163,11 +163,11 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "enviando arquivos" @@ -203,15 +203,15 @@ msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os ar msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -288,45 +288,45 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e4acbc625bb..17ff5ba4822 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Upload" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2d31c2c1a9e..8bac48b567d 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 09:50+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" @@ -69,7 +70,7 @@ msgstr "{count} arquivos" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5d2ae3453f1..b5dc7ad4e4b 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 10:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index aeab73f5382..ddc3d7e66e8 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 12:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 6210982a925..42c0929b117 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 11:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -230,7 +230,7 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -250,7 +250,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -350,23 +350,23 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -465,7 +465,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso interdito" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nao encontrada" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 480cb0feb4b..f9a45e1db27 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:55-0400\n" -"PO-Revision-Date: 2013-07-28 10:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -130,7 +130,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" @@ -162,11 +162,11 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -202,15 +202,15 @@ msgstr "O seu download está a ser preparado. Este processo pode demorar algum t msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -287,45 +287,45 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Transferir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index b9a5089858a..375dee2ebe9 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 15:30+0000\n" -"Last-Translator: moura232 \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 10:10+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" @@ -54,7 +54,7 @@ msgstr "" msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." #: files/error.php:7 msgid "" @@ -66,7 +66,7 @@ msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Faltam alguns requisitos." #: hooks/hooks.php:45 msgid "" @@ -100,11 +100,11 @@ msgstr "Encriptação" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Chave de recuperação da conta" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -116,15 +116,15 @@ msgstr "Desactivado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Alterar a chave de recuperação:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Chave anterior de recuperação da conta" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nova chave de recuperação da conta" #: templates/settings-admin.php:53 msgid "Change Password" @@ -146,11 +146,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Password anterior da conta" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Password actual da conta" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -164,7 +164,7 @@ msgstr "ativar recuperação do password:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +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:63 msgid "File recovery settings updated" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index efa7e06de16..6cb410e6e19 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: moliveira \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Password" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Transferir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carregar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 9cba8216b23..1a3939583ae 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 13:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index ed8da9741bd..48979e5e805 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 9107eae9198..1537c13dd9d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 08:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -230,7 +230,7 @@ msgstr "Tipul obiectului nu este specificat." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eroare" @@ -250,7 +250,7 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -350,23 +350,23 @@ msgstr "ștergere" msgid "share" msgstr "partajare" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -465,7 +465,7 @@ msgstr "Ajutor" msgid "Access forbidden" msgstr "Acces restricționat" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nu s-a găsit" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 29b550b041b..766d472d733 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -123,7 +123,7 @@ msgstr "Partajează" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Șterge" @@ -131,7 +131,7 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "În așteptare" @@ -163,11 +163,11 @@ msgstr "Anulează ultima acțiune" msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fișiere se încarcă" @@ -203,15 +203,15 @@ msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă f msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -288,45 +288,45 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a sterge fisiere aici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descarcă" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Anulare partajare" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 16ec0309aee..49b2267a3fc 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: sergiu_sechel \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descarcă" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 3e46872e4b3..c2f89f171de 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 08:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index a8544e419c2..f56facba0db 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 4ac59f4bd01..12a8bcb2a5a 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -232,7 +232,7 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ошибка" @@ -252,7 +252,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -352,23 +352,23 @@ msgstr "удалить" msgid "share" msgstr "открыть доступ" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Письмо отправлено" @@ -467,7 +467,7 @@ msgstr "Помощь" msgid "Access forbidden" msgstr "Доступ запрещён" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облако не найдено" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 593ec765477..dbb38a0716f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -124,7 +124,7 @@ msgstr "Открыть доступ" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" @@ -132,7 +132,7 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ожидание" @@ -164,11 +164,11 @@ msgstr "отмена" msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файлы загружаются" @@ -204,15 +204,15 @@ msgstr "Загрузка началась. Это может потребова msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Изменён" @@ -289,45 +289,45 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "У вас нет разрешений на запись здесь." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Скачать" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Закрыть общий доступ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index c55ea5d2491..2c518ea20c6 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Скачать" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 9a6c71a342f..2aab4fee2d3 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 12:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 0e5f3faf89a..7558860d48e 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 10:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index f0c60237992..d891de93082 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "දෝෂයක්" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "මකන්න" msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "උදව්" msgid "Access forbidden" msgstr "ඇතුල් වීම තහනම්" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "සොයා ගත නොහැක" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index acc9d595006..8271038a665 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "බෙදා හදා ගන්න" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "මකා දමන්න" @@ -128,7 +128,7 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "වෙනස් කළ" @@ -285,45 +285,45 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "බාන්න" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "නොබෙදු" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 40540cda0d3..fb8e0b2e446 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "මුර පදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "බාන්න" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index f6c17bac2d5..6b8ff4aca15 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "පරිපාලක" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -257,7 +257,7 @@ msgstr "පෙර අවුරුද්දේ" msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 6b2384d0b79..6ef80e04cb6 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 00454814546..42e2cda81b6 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 8f5745242da..2b3692aad67 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -247,7 +247,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -347,23 +347,23 @@ msgstr "vymazať" msgid "share" msgstr "zdieľať" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email odoslaný" @@ -462,7 +462,7 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Prístup odmietnutý" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nenájdené" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 85a9aa852a2..864a10d1d2c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Zmazať" @@ -129,7 +129,7 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Prebieha" @@ -161,11 +161,11 @@ msgstr "vrátiť" msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "nahrávanie súborov" @@ -201,15 +201,15 @@ msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, mô msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veľkosť" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Upravené" @@ -286,45 +286,45 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index f48e3f693e9..a904512e69a 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 804de8e425c..0d18fe39651 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrátor" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" @@ -258,7 +258,7 @@ msgstr "minulý rok" msgid "years ago" msgstr "pred rokmi" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index ee728d45d68..e1b6bb618fa 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 551e7074e69..fd58388aa00 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:57+0000\n" +"Last-Translator: barbarak \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" @@ -228,7 +228,7 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Napaka" @@ -248,7 +248,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -348,23 +348,23 @@ msgstr "izbriši" msgid "share" msgstr "določi souporabo" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -463,7 +463,7 @@ msgstr "Pomoč" msgid "Access forbidden" msgstr "Dostop je prepovedan" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" @@ -498,7 +498,7 @@ msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243 #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Za varno uporabo storitve %s posodobite PHP" #: templates/installation.php:32 msgid "" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index a9c7afcf488..728a20867e0 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Izbriši" @@ -129,7 +129,7 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "V čakanju ..." @@ -161,11 +161,11 @@ msgstr "razveljavi" msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -201,15 +201,15 @@ msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datote msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" @@ -286,45 +286,45 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Prejmi" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 46312bd3d27..7df04bc1739 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Geslo" msgid "Submit" msgstr "Pošlji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Prejmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1c5ae53da77..0aa12d196e3 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Skrbništvo" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" @@ -258,7 +258,7 @@ msgstr "lansko leto" msgid "years ago" msgstr "let nazaj" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 63f47e94c89..89e0f265217 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 80f500cd41e..f77dc778815 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Veprim i gabuar" @@ -247,7 +247,7 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -347,23 +347,23 @@ msgstr "elimino" msgid "share" msgstr "nda" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email-i u dërgua" @@ -462,7 +462,7 @@ msgstr "Ndihmë" msgid "Access forbidden" msgstr "Ndalohet hyrja" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 1df65fed8f9..5b7dc623375 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimino" @@ -128,7 +128,7 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pezulluar" @@ -160,11 +160,11 @@ msgstr "anulo" msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -200,15 +200,15 @@ msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët j msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensioni" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifikuar" @@ -285,45 +285,45 @@ msgstr "Dosje" msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Skedarë të eliminuar" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Shkarko" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 4e79b13e391..1dce2e65bc6 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Kodi" msgid "Submit" msgstr "Parashtro" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Shkarko" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 35759acbd8e..6c1b4ba5b53 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -257,7 +257,7 @@ msgstr "vitin e shkuar" msgid "years ago" msgstr "vite më parë" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 5cfd44d84b3..b1fcde92cd8 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 1c9c62a203e..462d4016e29 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -346,23 +346,23 @@ msgstr "обриши" msgid "share" msgstr "подели" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Порука је послата" @@ -461,7 +461,7 @@ msgstr "Помоћ" msgid "Access forbidden" msgstr "Забрањен приступ" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облак није нађен" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 75b75067cbd..49bcc636444 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Дели" msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Обриши" @@ -128,7 +128,7 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "На чекању" @@ -160,11 +160,11 @@ msgstr "опозови" msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "датотеке се отпремају" @@ -200,15 +200,15 @@ msgstr "Припремам преузимање. Ово може да потра msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Измењено" @@ -285,45 +285,45 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Овде немате дозволу за писање." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Преузми" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Укини дељење" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 8ecabd78e62..93140c09421 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преузми" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bd9dcab7ec7..e5b62d888b5 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Администратор" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -257,7 +257,7 @@ msgstr "прошле године" msgid "years ago" msgstr "година раније" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8b184dba592..4e15ea5bd44 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index cebbf844333..7657df7e8ae 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblak nije nađen" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 3e56d5a8ed6..7905ba199a9 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Obriši" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index e0cc5d36714..62dd8a318bf 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index f2a53ab59e9..9ec9e7fac65 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Adninistracija" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index e72d94938e2..2b5d1f15a87 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3e6da0bdb3d..035b2dc7070 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -230,7 +230,7 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fel" @@ -250,7 +250,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fel vid delning" @@ -350,23 +350,23 @@ msgstr "radera" msgid "share" msgstr "dela" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post skickat" @@ -465,7 +465,7 @@ msgstr "Hjälp" msgid "Access forbidden" msgstr "Åtkomst förbjuden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Hittade inget moln" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 9fa27187a48..b689f93909b 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -124,7 +124,7 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Radera" @@ -132,7 +132,7 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Väntar" @@ -164,11 +164,11 @@ msgstr "ångra" msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer laddas upp" @@ -204,15 +204,15 @@ msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ändrad" @@ -289,45 +289,45 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 85deb24c859..3658d3cedd9 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stefan Gagner \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 8e2de52c4f7..414bb524158 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index cbc9a0fe215..f963b8165b6 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 5e4f08ccb52..0cf4663cb99 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 97e92571b5e..57b84bb5dcb 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "வழு" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -346,23 +346,23 @@ msgstr "நீக்குக" msgid "share" msgstr "பகிர்தல்" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "உதவி" msgid "Access forbidden" msgstr "அணுக தடை" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index c89bc46dcf0..6dc52aac126 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "பகிர்வு" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "நீக்குக" @@ -128,7 +128,7 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -160,11 +160,11 @@ msgstr "முன் செயல் நீக்கம் " msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "அளவு" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -285,45 +285,45 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "பகிரப்படாதது" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 4349314170b..7c8041c6cc9 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b4f5cc473a7..3aac60962c9 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "நிர்வாகம்" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -257,7 +257,7 @@ msgstr "கடந்த வருடம்" msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 1c0ba580a0d..2e0ab2843a5 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 8dbec109d1a..0678e40d64b 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "పొరపాటు" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "తొలగించు" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "సహాయం" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 1016563e1e9..3b3743c9758 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "సంకేతపదం" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 5cb1c2bfb6c..7d9db7511f5 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "పోయిన సంవత్సరం" msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index dd4df36550e..cf534a3c9b3 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7f756aac512..9a7e80efbcb 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b04d02db84e..72fb94356f8 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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_encryption.pot b/l10n/templates/files_encryption.pot index febbe2b91f9..10ab40b0172 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 1ca2a5ac43a..56874224712 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 4a1f2dcf119..0db9df6294a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,13 +8,13 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 @@ -29,6 +29,30 @@ msgstr "" msgid "Submit" 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 974b929fdcf..a9bb63b4d7d 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 68871834c25..6c2f5fd0e02 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 6131869d26b..4adb20d6545 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 755649250a4..9861cd91414 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 719cadb612f..75c32132d7f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 aca067586ea..8f83935cbea 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-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 739c9d41375..63ae34e1a7f 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ข้อผิดพลาด" @@ -246,7 +246,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -346,23 +346,23 @@ msgstr "ลบ" msgid "share" msgstr "แชร์" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" @@ -461,7 +461,7 @@ msgstr "ช่วยเหลือ" msgid "Access forbidden" msgstr "การเข้าถึงถูกหวงห้าม" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ไม่พบ Cloud" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index f58238d474b..5b14df39412 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "แชร์" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ลบ" @@ -128,7 +128,7 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -160,11 +160,11 @@ msgstr "เลิกทำ" msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -200,15 +200,15 @@ msgstr "กำลังเตรียมดาวน์โหลดข้อม msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -285,45 +285,45 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 74b76cfb8c1..8699fb38403 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index a12613c7221..c8a3eecf404 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "ผู้ดูแล" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -257,7 +257,7 @@ msgstr "ปีที่แล้ว" msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index c7bf8e3f6d4..bdaa8548717 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 62f5a82fb76..5f98732ac0b 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hata" @@ -247,7 +247,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -347,23 +347,23 @@ msgstr "sil" msgid "share" msgstr "paylaş" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta gönderildi" @@ -462,7 +462,7 @@ msgstr "Yardım" msgid "Access forbidden" msgstr "Erişim yasaklı" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Bulut bulunamadı" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index e83270b90a9..4684d344ee4 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Sil" @@ -129,7 +129,7 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bekliyor" @@ -161,11 +161,11 @@ msgstr "geri al" msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -201,15 +201,15 @@ msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" @@ -286,45 +286,45 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dosyalar silindi" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "İndir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 2b7db48119b..498486086d1 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Parola" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "İndir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Yükle" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f87d09b3415..31eca3fff5a 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Yönetici" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" @@ -258,7 +258,7 @@ msgstr "geçen yıl" msgid "years ago" msgstr "yıl önce" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 55a5f89cd03..b92f0ef35ee 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 3978157b549..9a6950f93cd 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خاتالىق" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "ئۆچۈر" msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "ياردەم" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 4881ae71621..d312f8baddb 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "ھەمبەھىر" msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ئۆچۈر" @@ -128,7 +128,7 @@ msgstr "ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" @@ -160,11 +160,11 @@ msgstr "يېنىۋال" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -285,45 +285,45 @@ msgstr "قىسقۇچ" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 309e31e9e0d..af6816a97b6 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "ئىم" msgid "Submit" msgstr "تاپشۇر" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index bba5b72f53f..8cfb7be3243 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index e533669f2c1..f1f2c40e5c6 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 8a8af166006..e0d6c3e1235 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Помилка" @@ -246,7 +246,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -346,23 +346,23 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -461,7 +461,7 @@ msgstr "Допомога" msgid "Access forbidden" msgstr "Доступ заборонено" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud не знайдено" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 9da6d91c885..0928802b6a0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "Поділитися" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Видалити" @@ -128,7 +128,7 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Очікування" @@ -160,11 +160,11 @@ msgstr "відмінити" msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файли завантажуються" @@ -200,15 +200,15 @@ msgstr "Ваше завантаження готується. Це може за msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Змінено" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "У вас тут немає прав на запис." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Завантажити" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Закрити доступ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a2aca19d514..8b42f1750c9 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Передати" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Завантажити" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 950fef2e264..ef6c69e342d 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Адмін" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" @@ -257,7 +257,7 @@ msgstr "минулого року" msgid "years ago" msgstr "роки тому" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 04fdad38c96..9c8fb92aee5 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 0ca3c451c16..6028892d2ab 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ایرر" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -346,23 +346,23 @@ msgstr "ختم کریں" msgid "share" msgstr "شئیر کریں" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "مدد" msgid "Access forbidden" msgstr "پہنچ کی اجازت نہیں" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "نہیں مل سکا" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 119e4cb853f..bdb1bd4bf05 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "پاسورڈ" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 6c94b885fda..b6fb2fe2457 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "ایڈمن" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 32adb4b6354..68f284014e7 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index cc90423755c..10cc9911235 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Lỗi" @@ -247,7 +247,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -347,23 +347,23 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email đã được gửi" @@ -462,7 +462,7 @@ msgstr "Giúp đỡ" msgid "Access forbidden" msgstr "Truy cập bị cấm" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Không tìm thấy Clound" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index f7d88926a65..990c1c729a5 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Xóa" @@ -129,7 +129,7 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Đang chờ" @@ -161,11 +161,11 @@ msgstr "lùi lại" msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -201,15 +201,15 @@ msgstr "Your download is being prepared. This might take some time if the files msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" @@ -286,45 +286,45 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Tải về" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 4bcdd783ac7..790f1962b02 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Tải về" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 83319251fa0..a36030ee8e5 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Quản trị" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -257,7 +257,7 @@ msgstr "năm trước" msgid "years ago" msgstr "năm trước" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 9ca92f2b61d..f9e4d85ee66 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index a6beec56ef2..f39018da430 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "出错" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享出错" @@ -348,23 +348,23 @@ msgstr "删除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码保护" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "发送中……" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "电子邮件已发送" @@ -463,7 +463,7 @@ msgstr "帮助" msgid "Access forbidden" msgstr "禁止访问" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "云 没有被找到" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index f04f187b9fa..0110f62f0f7 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" @@ -129,7 +129,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待中" @@ -161,11 +161,11 @@ msgstr "撤销" msgid "perform delete operation" msgstr "执行删除" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "个文件正在上传" @@ -201,15 +201,15 @@ msgstr "正在下载,可能会花点时间,跟文件大小有关" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "不正确文件夹名。Shared是保留名,不能使用。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改日期" @@ -286,45 +286,45 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已删除的文件" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您没有写入权限。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下载" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上传过大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 9894200717a..8ee0a2a54c5 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 63fdc2e17b5..e948c4e0210 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "管理员" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "您控制的网络服务" @@ -257,7 +257,7 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index d65a51203b6..ce8958d3f6f 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index d3c2a4dfcbc..fed020d0c90 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "错误" @@ -248,7 +248,7 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共享时出错" @@ -348,23 +348,23 @@ msgstr "删除" msgid "share" msgstr "共享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "邮件已发送" @@ -463,7 +463,7 @@ msgstr "帮助" msgid "Access forbidden" msgstr "访问禁止" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到云" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 458dbf1fc95..c43db5b90cb 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -123,7 +123,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" @@ -131,7 +131,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待" @@ -163,11 +163,11 @@ msgstr "撤销" msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "文件上传中" @@ -203,15 +203,15 @@ msgstr "下载正在准备中。如果文件较大可能会花费一些时间。 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改日期" @@ -288,45 +288,45 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您没有写权限" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下载" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 8b9f31ec904..e8e975b5a5f 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 35a0efd7f02..8c8e37a86ca 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "您控制的web服务" @@ -258,7 +258,7 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index a30c7460648..18f7612955f 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index bf8744fdda6..8313b4096d2 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -246,7 +246,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -346,23 +346,23 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "郵件已傳" @@ -461,7 +461,7 @@ msgstr "幫助" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到Cloud" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 4381c2c2e40..5fd010d872c 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" @@ -128,7 +128,7 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 71a63b6ac2b..2ef6877052c 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "密碼" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e6c8651e5c8..a479e199122 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 4d504c112d0..6f2ed6501b3 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index c590f48a35c..44c5ff8811c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -348,23 +348,23 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "正在傳送..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email 已寄出" @@ -463,7 +463,7 @@ msgstr "說明" msgid "Access forbidden" msgstr "存取被拒" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未發現雲端" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 26b717450ab..d50a170ed91 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" @@ -129,7 +129,7 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等候中" @@ -161,11 +161,11 @@ msgstr "復原" msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "檔案正在上傳中" @@ -201,15 +201,15 @@ msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改" @@ -286,45 +286,45 @@ msgstr "資料夾" msgid "From link" msgstr "從連結" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已刪除的檔案" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您在這裡沒有編輯權。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "這裡什麼也沒有,上傳一些東西吧!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 7c2b7e20512..265c05f1099 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 813363fd041..7b06ffdf18f 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -258,7 +258,7 @@ msgstr "去年" msgid "years ago" msgstr "幾年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index c8a612eeb6d..51ad7117fb8 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 917f383bb89..7390c5f432a 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -5,11 +5,14 @@ "Users" => "Uživatelé", "Apps" => "Aplikace", "Admin" => "Administrace", +"Failed to upgrade \"%s\"." => "Selhalo povýšení verze \"%s\".", "web services under your control" => "služby webu pod Vaší kontrolou", +"cannot open \"%s\"" => "nelze otevřít \"%s\"", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", "Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", "couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", @@ -49,5 +52,6 @@ "%d months ago" => "Před %d měsíci", "last year" => "minulý rok", "years ago" => "před lety", +"Caused by:" => "Příčina:", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" ); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 8f6263d6348..c962c6a1795 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -37,15 +37,19 @@ "A valid password must be provided" => "Musíte zadat platné heslo", "__language_name__" => "Česky", "Security Warning" => "Bezpečnostní upozornění", +"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", "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, protože rozhraní WebDAV je rozbité.", "Please double check the
installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Locale not working" => "Locale nefunguje", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému.", "Internet connection not working" => "Spojení s internetem nefujguje", +"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." => "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", "Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http.", "Use systems cron service to call the cron.php file once a minute." => "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", -- GitLab From 627fd8ba8dc9c7711a6015207d4e8beaaa5529fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 31 Jul 2013 16:52:53 +0200 Subject: [PATCH 057/164] add overflow-y scroll and clean up indents --- search/css/results.css | 113 +++++++++++++++++++++-------------------- 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/search/css/results.css b/search/css/results.css index 2f092f3789c..0e1db12e903 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -2,67 +2,68 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ - #searchresults { - background-color:#fff; - border-bottom-left-radius:1em; - box-shadow:0 0 10px #000; - list-style:none; - max-height:80%; - overflow:hidden; - padding-bottom:1em; - position:fixed; - right:0; - text-overflow:ellipsis; - top:3.5em; - width:26.5em; - z-index:75; - } - - .ie8 #searchresults { - border: 1px solid #666 !important; - } +#searchresults { + background-color:#fff; + border-bottom-left-radius:1em; + box-shadow:0 0 10px #000; + list-style:none; + max-height:80%; + overflow-x:hidden; + overflow-y: scroll; + padding-bottom:1em; + position:fixed; + right:0; + text-overflow:ellipsis; + top:3.5em; + width:26.5em; + z-index:75; +} - #searchresults li.resultHeader { - background-color:#eee; - border-bottom:solid 1px #CCC; - font-size:1.2em; - font-weight:700; - padding:.2em; - } +.ie8 #searchresults { + border: 1px solid #666 !important; +} - #searchresults li.result { - margin-left:2em; - } +#searchresults li.resultHeader { + background-color:#eee; + border-bottom:solid 1px #CCC; + font-size:1.2em; + font-weight:700; + padding:.2em; +} - #searchresults table { - border-spacing:0; - table-layout:fixed; - top:0; - width:100%; - } +#searchresults li.result { + margin-left:2em; +} - #searchresults td { - vertical-align:top; - padding:0 .3em; - } +#searchresults table { + border-spacing:0; + table-layout:fixed; + top:0; + width:100%; +} - #searchresults td.result div.text { - padding-left:1em; - white-space:nowrap; - } +#searchresults td { + vertical-align:top; + padding:0 .3em; +} - #searchresults td.result * { - cursor:pointer; - } +#searchresults td.result div.text { + padding-left:1em; + white-space:nowrap; +} - #searchresults td.type { - border-bottom:none; - border-right:1px solid #aaa; - font-weight:700; - text-align:right; - width:3.5em; - } +#searchresults td.result * { + cursor:pointer; +} - #searchresults tr.current { - background-color:#ddd; - } \ No newline at end of file +#searchresults td.type { + border-bottom:none; + border-right:1px solid #aaa; + font-weight:700; + text-align:right; + width:3.5em; +} + +#searchresults tr.current { + background-color:#ddd; +} \ No newline at end of file -- GitLab From cbf17617b01060853f69e094c8b6dd9c6f6f885f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 31 Jul 2013 17:05:24 +0200 Subject: [PATCH 058/164] update css properties with px based values --- search/css/results.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/search/css/results.css b/search/css/results.css index 0e1db12e903..30cc352fd7b 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -4,18 +4,18 @@ #searchresults { background-color:#fff; - border-bottom-left-radius:1em; + border-bottom-left-radius:11px; box-shadow:0 0 10px #000; list-style:none; max-height:80%; overflow-x:hidden; overflow-y: scroll; - padding-bottom:1em; + padding-bottom:6px; position:fixed; right:0; text-overflow:ellipsis; - top:3.5em; - width:26.5em; + top:20px; + width:380px; z-index:75; } -- GitLab From b037f2dc6e333482d0c0fba663769049bc275446 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 1 Aug 2013 01:57:04 -0400 Subject: [PATCH 059/164] [tx-robot] updated from transifex --- apps/files_encryption/l10n/sl.php | 2 ++ apps/files_external/l10n/uk.php | 1 + apps/files_sharing/l10n/ca.php | 6 ++++++ apps/files_sharing/l10n/da.php | 6 ++++++ apps/files_sharing/l10n/de.php | 6 ++++++ apps/files_sharing/l10n/de_DE.php | 6 ++++++ apps/files_sharing/l10n/es.php | 6 ++++++ apps/files_sharing/l10n/fi_FI.php | 6 ++++++ apps/files_sharing/l10n/gl.php | 6 ++++++ apps/files_sharing/l10n/it.php | 6 ++++++ apps/files_sharing/l10n/pl.php | 7 +++++++ apps/files_sharing/l10n/pt_BR.php | 6 ++++++ apps/files_trashbin/l10n/ca.php | 1 + apps/files_trashbin/l10n/da.php | 1 + apps/files_trashbin/l10n/gl.php | 1 + apps/files_trashbin/l10n/pl.php | 1 + apps/files_trashbin/l10n/uk.php | 1 + apps/files_versions/l10n/ca.php | 3 +++ apps/files_versions/l10n/pl.php | 3 +++ apps/user_ldap/l10n/ca.php | 8 ++++++++ apps/user_webdavauth/l10n/ca.php | 4 +++- apps/user_webdavauth/l10n/de_DE.php | 2 +- apps/user_webdavauth/l10n/pl.php | 4 +++- core/l10n/pl.php | 5 +++++ core/l10n/sl.php | 1 + core/l10n/sq.php | 4 ++++ l10n/ca/files_sharing.po | 18 +++++++++--------- l10n/ca/files_trashbin.po | 9 +++++---- l10n/ca/files_versions.po | 13 +++++++------ l10n/ca/user_ldap.po | 22 +++++++++++----------- l10n/ca/user_webdavauth.po | 10 +++++----- l10n/da/files_sharing.po | 18 +++++++++--------- l10n/da/files_trashbin.po | 9 +++++---- l10n/de/files_sharing.po | 19 ++++++++++--------- l10n/de_DE/files_sharing.po | 19 ++++++++++--------- l10n/de_DE/files_versions.po | 6 +++--- l10n/de_DE/user_webdavauth.po | 9 +++++---- l10n/es/files_sharing.po | 19 ++++++++++--------- l10n/fi_FI/files_sharing.po | 18 +++++++++--------- l10n/gl/files_sharing.po | 18 +++++++++--------- l10n/gl/files_trashbin.po | 9 +++++---- l10n/it/files_sharing.po | 18 +++++++++--------- l10n/pl/core.po | 16 ++++++++-------- l10n/pl/files_sharing.po | 21 +++++++++++---------- l10n/pl/files_trashbin.po | 9 +++++---- l10n/pl/files_versions.po | 13 +++++++------ l10n/pl/lib.po | 14 +++++++------- l10n/pl/settings.po | 8 ++++---- l10n/pl/user_webdavauth.po | 10 +++++----- l10n/pt_BR/files_sharing.po | 18 +++++++++--------- l10n/sl/core.po | 6 +++--- l10n/sl/files_encryption.po | 10 +++++----- l10n/sq/core.po | 15 ++++++++------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/uk/files_external.po | 21 +++++++++++---------- l10n/uk/files_trashbin.po | 9 +++++---- lib/l10n/pl.php | 4 ++++ settings/l10n/pl.php | 1 + 68 files changed, 325 insertions(+), 209 deletions(-) diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 8b28ba01155..016937c1415 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", +"Missing requirements." => "Manjkajoče zahteve", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 34d19af0ee9..8783896d289 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Помилка при налаштуванні сховища Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її.", "External Storage" => "Зовнішні сховища", "Folder name" => "Ім'я теки", "External storage" => "Зовнішнє сховище", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 9d2ab5031c1..ccf7fc28ec1 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", "Submit" => "Envia", +"Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", +"Reasons might be:" => "Les raons podrien ser:", +"the item was removed" => "l'element ha estat eliminat", +"the link expired" => "l'enllaç ha vençut", +"sharing is disabled" => "s'ha desactivat la compartició", +"For more info, please ask the person who sent this link." => "Per més informació contacteu amb qui us ha enviat l'enllaç.", "%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós", "%s shared the file %s with you" => "%s ha compartit el fitxer %s amb vós", "Download" => "Baixa", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index cf82e93d4ad..f9ee949484d 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Submit" => "Send", +"Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", +"Reasons might be:" => "Årsagen kan være:", +"the item was removed" => "Filen blev fjernet", +"the link expired" => "linket udløb", +"sharing is disabled" => "deling er deaktiveret", +"For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", "%s shared the folder %s with you" => "%s delte mappen %s med dig", "%s shared the file %s with you" => "%s delte filen %s med dig", "Download" => "Download", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index ad2d171aa9f..9b0184f3104 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Absenden", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Die Elemente wurden entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Dir geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Dir geteilt", "Download" => "Download", diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index cac7b7591d6..8661e3ee94d 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Das Element wurde entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt", "Download" => "Herunterladen", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 1b65cf0c190..2a006630ab0 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Este enlace parece no funcionar más.", +"Reasons might be:" => "Las causas podrían ser:", +"the item was removed" => "el elemento fue eliminado", +"the link expired" => "el enlace expiró", +"sharing is disabled" => "compartir está desactivado", +"For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", "%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", "%s shared the file %s with you" => "%s compartió el fichero %s contigo", "Download" => "Descargar", diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 370cbd98744..59c951b7248 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", +"Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", +"Reasons might be:" => "Mahdollisia syitä:", +"the item was removed" => "kohde poistettiin", +"the link expired" => "linkki vanheni", +"sharing is disabled" => "jakaminen on poistettu käytöstä", +"For more info, please ask the person who sent this link." => "Kysy lisätietoja henkilöltä, jolta sait linkin.", "%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", "%s shared the file %s with you" => "%s jakoi tiedoston %s kanssasi", "Download" => "Lataa", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 2d8de8e1019..c90f5b0760e 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", +"Reasons might be:" => "As razóns poderían ser:", +"the item was removed" => "o elemento foi retirado", +"the link expired" => "a ligazón caducou", +"sharing is disabled" => "foi desactivada a compartición", +"For more info, please ask the person who sent this link." => "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón.", "%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", "%s shared the file %s with you" => "%s compartiu o ficheiro %s con vostede", "Download" => "Descargar", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index cf25c53ca38..5bd18795715 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", "Submit" => "Invia", +"Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", +"Reasons might be:" => "I motivi potrebbero essere:", +"the item was removed" => "l'elemento è stato rimosso", +"the link expired" => "il collegamento è scaduto", +"sharing is disabled" => "la condivisione è disabilitata", +"For more info, please ask the person who sent this link." => "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", "%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te", "%s shared the file %s with you" => "%s ha condiviso il file %s con te", "Download" => "Scarica", diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 39039da77b6..3f72403116a 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,6 +1,13 @@ "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", "Submit" => "Wyślij", +"Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", +"Reasons might be:" => "Możliwe powody:", +"the item was removed" => "element został usunięty", +"the link expired" => "link wygasł", +"sharing is disabled" => "Udostępnianie jest wyłączone", +"For more info, please ask the person who sent this link." => "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", "%s shared the folder %s with you" => "%s współdzieli folder z tobą %s", "%s shared the file %s with you" => "%s współdzieli z tobą plik %s", "Download" => "Pobierz", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index c82989857a9..ffd068f4fc5 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", +"Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", +"Reasons might be:" => "As razões podem ser:", +"the item was removed" => "o item foi removido", +"the link expired" => "o link expirou", +"sharing is disabled" => "compartilhamento está desativada", +"For more info, please ask the person who sent this link." => "Para mais informações, por favor, pergunte a pessoa que enviou este link.", "%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", "%s shared the file %s with you" => "%s compartilhou o arquivo %s com você", "Download" => "Baixar", diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index b7540f653d6..2f15068cb50 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} carpetes", "1 file" => "1 fitxer", "{count} files" => "{count} fitxers", +"restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", "Restore" => "Recupera", "Delete" => "Esborra", diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 16f98baed7e..ff114a10e7e 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mapper", "1 file" => "1 fil", "{count} files" => "{count} filer", +"restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", "Delete" => "Slet", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index b9b3c8a1e5c..d22277c28f5 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} cartafoles", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", "Restore" => "Restablecer", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index 5c9f558f11f..2b9ace19c41 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -11,6 +11,7 @@ "{count} folders" => "Ilość folderów: {count}", "1 file" => "1 plik", "{count} files" => "Ilość plików: {count}", +"restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", "Restore" => "Przywróć", "Delete" => "Usuń", diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index ffc9ab02f48..b2f10760216 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлів", +"restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Restore" => "Відновити", "Delete" => "Видалити", diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 4f92c341200..7fd168e1cc6 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,5 +1,8 @@ "No s'ha pogut revertir: %s", "Versions" => "Versions", +"Failed to revert {file} to revision {timestamp}." => "Ha fallat en retornar {file} a la revisió {timestamp}", +"More versions..." => "Més versions...", +"No other versions available" => "No hi ha altres versions disponibles", "Restore" => "Recupera" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index 3f4f61ec9e8..00f4ac3f768 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,5 +1,8 @@ "Nie można było przywrócić: %s", "Versions" => "Wersje", +"Failed to revert {file} to revision {timestamp}." => "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}.", +"More versions..." => "Więcej wersji...", +"No other versions available" => "Nie są dostępne żadne inne wersje", "Restore" => "Przywróć" ); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index af5efbcb540..8cf51f537b0 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -15,6 +15,7 @@ "Connection test failed" => "La prova de connexió ha fallat", "Do you really want to delete the current Server Configuration?" => "Voleu eliminar la configuració actual del servidor?", "Confirm Deletion" => "Confirma l'eliminació", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", "Server configuration" => "Configuració del servidor", "Add Server Configuration" => "Afegeix la configuració del servidor", @@ -44,20 +45,24 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Afegiu una màquina de còpia de seguretat opcional. Ha de ser una rèplica del servidor LDAP/AD principal.", "Backup (Replica) Port" => "Port de la còpia de seguretat (rèplica)", "Disable Main Server" => "Desactiva el servidor principal", +"Only connect to the replica server." => "Connecta només al servidor rèplica.", "Use TLS" => "Usa TLS", "Do not use it additionally for LDAPS connections, it will fail." => "No ho useu adicionalment per a conexions LDAPS, fallarà.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor %s.", "Not recommended, use for testing only." => "No recomanat, ús només per proves.", "Cache Time-To-Live" => "Memòria de cau Time-To-Live", "in seconds. A change empties the cache." => "en segons. Un canvi buidarà la memòria de cau.", "Directory Settings" => "Arranjaments de carpetes", "User Display Name Field" => "Camp per mostrar el nom d'usuari", +"The LDAP attribute to use to generate the user's display name." => "Atribut LDAP a usar per generar el nom a mostrar de l'usuari.", "Base User Tree" => "Arbre base d'usuaris", "One User Base DN per line" => "Una DN Base d'Usuari per línia", "User Search Attributes" => "Atributs de cerca d'usuari", "Optional; one attribute per line" => "Opcional; Un atribut per línia", "Group Display Name Field" => "Camp per mostrar el nom del grup", +"The LDAP attribute to use to generate the groups's display name." => "Atribut LDAP a usar per generar el nom a mostrar del grup.", "Base Group Tree" => "Arbre base de grups", "One Group Base DN per line" => "Una DN Base de Grup per línia", "Group Search Attributes" => "Atributs de cerca de grup", @@ -70,10 +75,13 @@ "User Home Folder Naming Rule" => "Norma per anomenar la carpeta arrel d'usuari", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD.", "Internal Username" => "Nom d'usuari intern", +"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." => "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits).", "Internal Username Attribute:" => "Atribut nom d'usuari intern:", "Override UUID detection" => "Sobrescriu la detecció UUID", +"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." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).", "UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP", +"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." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.", "Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP", "Clear Groupname-LDAP Group Mapping" => "Elimina el mapatge de grup Nom de grup-LDAP", "Test Configuration" => "Comprovació de la configuració", diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index 71a4f0832c6..b046e58cee6 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,3 +1,5 @@ "Autenticació WebDAV" +"WebDAV Authentication" => "Autenticació WebDAV", +"Address: " => "Adreça:", +"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." => "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 04ab22e9c58..ff55a5d8951 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,5 +1,5 @@ "WebDAV-Authentifizierung", -"Address: " => "Addresse: ", +"Address: " => "Adresse:", "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." => "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 3ed826098da..5dc99eb0c20 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,3 +1,5 @@ "Uwierzytelnienie WebDAV" +"WebDAV Authentication" => "Uwierzytelnienie WebDAV", +"Address: " => "Adres:", +"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." => "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index af3bb0bf35a..6e5b4327c48 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -91,6 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Żądanie niepowiodło się!
Czy Twój email/nazwa użytkownika są poprawne?", "You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.", "Username" => "Nazwa użytkownika", +"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?" => "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?", "Yes, I really want to reset my password now" => "Tak, naprawdę chcę zresetować hasło teraz", "Request reset" => "Żądanie resetowania", "Your password was reset" => "Zresetowano hasło", @@ -104,13 +105,16 @@ "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Bezpieczny generator liczb losowych jest niedostępny. Włącz rozszerzenie OpenSSL w PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpiecznego generatora liczb losowych, osoba atakująca może przewidzieć token resetujący hasło i przejąć kontrolę nad twoim kontem.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.", +"For information how to properly configure your server, please see the documentation." => "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją.", "Create an admin account" => "Utwórz konta administratora", "Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", @@ -131,6 +135,7 @@ "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", +"Hey there,

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

Cheers!" => "Cześć,

Informuję cię że %s udostępnia ci »%s«.\n
Zobacz

Pozdrawiam!", "prev" => "wstecz", "next" => "naprzód", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 37194c39059..e7b88316ec3 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -114,6 +114,7 @@ "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", +"For information how to properly configure your server, please see the documentation." => "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije.", "Create an admin account" => "Ustvari skrbniški račun", "Advanced" => "Napredne možnosti", "Data folder" => "Podatkovna mapa", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 25e8d6a4b6b..0daeccc4814 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -42,6 +42,7 @@ "years ago" => "vite më parë", "Choose" => "Zgjidh", "Cancel" => "Anulo", +"Error loading file picker template" => "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve", "Yes" => "Po", "No" => "Jo", "Ok" => "Në rregull", @@ -60,6 +61,7 @@ "Share with link" => "Nda me lidhje", "Password protect" => "Mbro me kod", "Password" => "Kodi", +"Allow Public Upload" => "Lejo Ngarkimin Publik", "Email link to person" => "Dërgo email me lidhjen", "Send" => "Dërgo", "Set expiration date" => "Cakto datën e përfundimit", @@ -88,6 +90,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Kërkesa dështoi!
A u siguruat që email-i/përdoruesi juaj ishte i saktë?", "You will receive a link to reset your password via Email." => "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin.", "Username" => "Përdoruesi", +"Yes, I really want to reset my password now" => "Po, dua ta rivendos kodin tani", "Request reset" => "Bëj kërkesë për rivendosjen", "Your password was reset" => "Kodi yt u rivendos", "To login page" => "Tek faqja e hyrjes", @@ -100,6 +103,7 @@ "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index f160ac69fb4..116523992a2 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Envia" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Aquest enllaç sembla que no funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Les raons podrien ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "l'element ha estat eliminat" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "l'enllaç ha vençut" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "s'ha desactivat la compartició" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." #: templates/public.php:15 #, php-format diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index dde5919a291..0acc94e33cc 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} fitxers" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurat" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 65f82183471..0ded7de3c6e 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Versions" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Ha fallat en retornar {file} a la revisió {timestamp}" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Més versions..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "No hi ha altres versions disponibles" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index cc362ad68d5..4002118c40a 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +91,7 @@ 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 "" +msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." #: templates/settings.php:12 msgid "" @@ -223,7 +223,7 @@ msgstr "Desactiva el servidor principal" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Connecta només al servidor rèplica." #: templates/settings.php:76 msgid "Use TLS" @@ -246,7 +246,7 @@ msgstr "Desactiva la validació de certificat SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -270,7 +270,7 @@ msgstr "Camp per mostrar el nom d'usuari" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atribut LDAP a usar per generar el nom a mostrar de l'usuari." #: templates/settings.php:84 msgid "Base User Tree" @@ -294,7 +294,7 @@ msgstr "Camp per mostrar el nom del grup" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atribut LDAP a usar per generar el nom a mostrar del grup." #: templates/settings.php:87 msgid "Base Group Tree" @@ -360,7 +360,7 @@ msgid "" "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 "" +msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -379,7 +379,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +401,7 @@ msgid "" " 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 "" +msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 24f6f89a3b6..ce6c9201125 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 08:00+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +25,11 @@ msgstr "Autenticació WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adreça:" #: templates/settings.php:7 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 "" +msgstr "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index a849b738d73..7ebea150ec0 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Send" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Desværre, dette link ser ikke ud til at fungerer længere." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Årsagen kan være:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Filen blev fjernet" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "linket udløb" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "deling er deaktiveret" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "For yderligere information, kontakt venligst personen der sendte linket. " #: templates/public.php:15 #, php-format diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 40f196359c1..1306af5b495 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} filer" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Gendannet" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5c739090529..f1873491426 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # Pwnicorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Absenden" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Die Elemente wurden entfernt" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "Der Link ist abgelaufen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." #: templates/public.php:15 #, php-format diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 533360cd7f4..1f56b59086b 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # JamFX , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Bestätigen" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Das Element wurde entfernt" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "Der Link ist abgelaufen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." #: templates/public.php:15 #, php-format diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index df04974b288..56dd696d6d9 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:33+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 5e2fbb3ee7d..e282ff5473e 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 # a.tangemann , 2012-2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:10+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:30+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 msgid "Address: " -msgstr "Addresse: " +msgstr "Adresse:" #: templates/settings.php:7 msgid "" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index d9673bd20f5..08305cb687f 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 16:30+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Enviar" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Este enlace parece no funcionar más." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Las causas podrían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "el elemento fue eliminado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "el enlace expiró" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartir está desactivado" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mayor información, contacte a la persona que le envió el enlace." #: templates/public.php:15 #, php-format diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 64ef882ea6e..6f5c0b268f5 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+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" @@ -32,27 +32,27 @@ msgstr "Lähetä" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Valitettavasti linkki ei vaikuta enää toimivan." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Mahdollisia syitä:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "kohde poistettiin" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "linkki vanheni" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "jakaminen on poistettu käytöstä" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." #: templates/public.php:15 #, php-format diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 3a02212cd62..23b10c46bbc 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 09:30+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" @@ -32,27 +32,27 @@ msgstr "Enviar" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Semella que esta ligazón non funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "As razóns poderían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "o elemento foi retirado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "a ligazón caducou" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "foi desactivada a compartición" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." #: templates/public.php:15 #, php-format diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index a3eefc4ece0..5766c76f565 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 09:20+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" @@ -69,7 +70,7 @@ msgstr "{count} ficheiros" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index f0c9490e2c0..784e96175f3 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,27 +33,27 @@ msgstr "Invia" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Spiacenti, questo collegamento sembra non essere più attivo." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "I motivi potrebbero essere:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "l'elemento è stato rimosso" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "il collegamento è scaduto" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "la condivisione è disabilitata" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." #: templates/public.php:15 #, php-format diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7f493d24ba3..a5822793cf7 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -413,7 +413,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -476,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -498,7 +498,7 @@ msgstr "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie." #: templates/installation.php:32 msgid "" @@ -523,7 +523,7 @@ msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu inte msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją." #: templates/installation.php:47 msgid "Create an admin account" @@ -615,7 +615,7 @@ msgstr "Alternatywne loginy" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Cześć,

Informuję cię że %s udostępnia ci »%s«.\n
Zobacz

Pozdrawiam!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 9ca97e16026..f49a08df8a7 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." #: templates/authenticate.php:7 msgid "Password" @@ -31,27 +32,27 @@ msgstr "Wyślij" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Możliwe powody:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "element został usunięty" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "link wygasł" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Udostępnianie jest wyłączone" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." #: templates/public.php:15 #, php-format diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 70345423d29..eec8378c1bc 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:37+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "Ilość plików: {count}" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "przywrócony" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 6a4a6de114e..d9898916d86 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Wersje" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Więcej wersji..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Nie są dostępne żadne inne wersje" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e4a600dd108..e90fe749bcf 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "Administrator" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Błąd przy aktualizacji \"%s\"." #: defaults.php:35 msgid "web services under your control" @@ -54,7 +54,7 @@ msgstr "Kontrolowane serwisy" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Nie można otworzyć \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +76,7 @@ msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." #: helper.php:235 msgid "couldn't be determined" @@ -260,7 +260,7 @@ msgstr "lat temu" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Spowodowane przez:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1dac979b4ba..61dd2280e51 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -274,7 +274,7 @@ msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Pozwól na publiczne wczytywanie" #: templates/admin.php:152 msgid "" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index ced5b2d9f81..7c11b63e14a 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +26,11 @@ msgstr "Uwierzytelnienie WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adres:" #: templates/settings.php:7 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 "" +msgstr "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 17ff5ba4822..d382f7570bb 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:30+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" @@ -32,27 +32,27 @@ msgstr "Submeter" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Desculpe, este link parece não mais funcionar." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "As razões podem ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "o item foi removido" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "o link expirou" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartilhamento está desativada" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." #: templates/public.php:15 #, php-format diff --git a/l10n/sl/core.po b/l10n/sl/core.po index fd58388aa00..55df77f349a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:57+0000\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 06:10+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -523,7 +523,7 @@ msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko intern msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 0386afaca31..b9ee63d4082 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 08:10+0000\n" +"Last-Translator: barbarak \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" @@ -64,14 +64,14 @@ msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno z #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Manjkajoče zahteve" #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index f77dc778815..2c882917c04 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -4,13 +4,14 @@ # # Translators: # Odeen , 2013 +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 23:10+0000\n" +"Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -204,7 +205,7 @@ msgstr "Anulo" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve" #: js/oc-dialogs.js:164 msgid "Yes" @@ -285,7 +286,7 @@ msgstr "Kodi" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Lejo Ngarkimin Publik" #: js/share.js:202 msgid "Email link to person" @@ -416,7 +417,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Po, dua ta rivendos kodin tani" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -475,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9a7e80efbcb..a17c2034930 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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.pot b/l10n/templates/files.pot index 72fb94356f8..385fca6c688 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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_encryption.pot b/l10n/templates/files_encryption.pot index 10ab40b0172..1ae308d9e92 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 56874224712..2b215ef21c7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 0db9df6294a..4da92b8c635 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 a9bb63b4d7d..917bb632910 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 6c2f5fd0e02..fabfff67cf4 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 4adb20d6545..71ad60bd0f7 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 9861cd91414..eafa3a8fa50 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 75c32132d7f..2145532de88 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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 8f83935cbea..20e34edb44f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-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/uk/files_external.po b/l10n/uk/files_external.po index 6ed509717b8..e5332acadba 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Last-Translator: Soul Kim \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" @@ -17,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Доступ дозволено" @@ -25,7 +26,7 @@ msgstr "Доступ дозволено" msgid "Error configuring Dropbox storage" msgstr "Помилка при налаштуванні сховища Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Дозволити доступ" @@ -33,29 +34,29 @@ msgstr "Дозволити доступ" msgid "Please provide a valid Dropbox app key and secret." msgstr "Будь ласка, надайте дійсний ключ та пароль Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:447 +#: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:450 +#: lib/config.php:451 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:453 +#: lib/config.php:454 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 74cd523fa5b..5bc455917f3 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Last-Translator: Soul Kim \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" @@ -69,7 +70,7 @@ msgstr "{count} файлів" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "відновлено" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bbca1913b70..d06d5ba8a3e 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -5,11 +5,14 @@ "Users" => "Użytkownicy", "Apps" => "Aplikacje", "Admin" => "Administrator", +"Failed to upgrade \"%s\"." => "Błąd przy aktualizacji \"%s\".", "web services under your control" => "Kontrolowane serwisy", +"cannot open \"%s\"" => "Nie można otworzyć \"%s\"", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu.", "couldn't be determined" => "nie może zostać znaleziony", "Application is not enabled" => "Aplikacja nie jest włączona", "Authentication error" => "Błąd uwierzytelniania", @@ -49,5 +52,6 @@ "%d months ago" => "%d miesiecy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", +"Caused by:" => "Spowodowane przez:", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 19b84faddd5..7b3d44975bc 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -50,6 +50,7 @@ "Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow links" => "Zezwalaj na odnośniki", "Allow users to share items to the public with links" => "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników", +"Allow public uploads" => "Pozwól na publiczne wczytywanie", "Allow resharing" => "Zezwalaj na ponowne udostępnianie", "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", -- GitLab From 3e53e25cd17704eeb529d0869ecdeccc2a699364 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 1 Aug 2013 10:05:01 +0200 Subject: [PATCH 060/164] added @var tags --- apps/files_external/lib/amazons3.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1a..99ca261284e 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -33,10 +33,25 @@ use Aws\S3\Exception\S3Exception; class AmazonS3 extends \OC\Files\Storage\Common { + /** + * @var \Aws\S3\S3Client + */ private $connection; + /** + * @var string + */ private $bucket; + /** + * @var array + */ private static $tmpFiles = array(); + /** + * @var bool + */ private $test = false; + /** + * @var int + */ private $timeout = 15; private function normalizePath($path) { -- GitLab From 5a4c39207e11062ce042cf73ea332221abd4661f Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 1 Aug 2013 10:08:41 +0200 Subject: [PATCH 061/164] write all catched exception messages to the log --- apps/files_external/lib/amazons3.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1a..b8544cf62b8 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -96,6 +96,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); throw new \Exception("Creation of bucket failed."); } } @@ -129,6 +130,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -150,6 +152,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $path ); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -184,6 +187,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -221,6 +225,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return opendir('fakedir://amazons3' . $path); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -249,6 +254,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return $stat; } catch(S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -269,6 +275,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return 'dir'; } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -293,6 +300,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -315,6 +323,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'SaveAs' => $tmpFile )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -361,6 +370,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'Key' => $path )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -398,6 +408,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $this->testTimeout(); } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -417,6 +428,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } else { @@ -432,6 +444,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -514,6 +527,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { unlink($tmpFile); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } -- GitLab From 9253627327a35c9446f413bc487c2d7b0f63f9af Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 13:04:55 +0200 Subject: [PATCH 062/164] cancel sharing if some users doesn't have a working encryption set-up. --- apps/files_encryption/hooks/hooks.php | 15 ++++++--------- lib/public/share.php | 22 ++++++++++++++++++++-- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index b2a17f6bca5..be95037784e 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -250,21 +250,18 @@ class Hooks { break; } - $error = false; + $notConfigured = array(); foreach ($users as $user) { if (!$view->file_exists($user . '.public.key')) { - $error = true; - break; + $notConfigured[] = $user; } } - if ($error) // Set flag var 'run' to notify emitting - // script that hook execution failed - { - $params['run']->run = false; + if (count($notConfigured) > 0) { + $params['run'] = false; + $params['error'] = 'Following users are not set up for encryption: ' . join(', ' , $notConfigured); } - // TODO: Make sure files_sharing provides user - // feedback on failed share + } /** diff --git a/lib/public/share.php b/lib/public/share.php index b349dd48776..63645e6fa34 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1288,6 +1288,8 @@ class Share { if ($shareType == self::SHARE_TYPE_GROUP) { $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1297,8 +1299,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { @@ -1374,6 +1383,8 @@ class Share { } else { $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1383,8 +1394,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { -- GitLab From 69173c2a6bad0646efcebe9815fbd18c57665ebd Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 14:19:33 +0200 Subject: [PATCH 063/164] fix test and make warning translatable --- apps/files_encryption/hooks/hooks.php | 3 ++- apps/files_encryption/tests/share.php | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index be95037784e..741df166b70 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -238,6 +238,7 @@ class Hooks { */ public static function preShared($params) { + $l = new \OC_L10N('files_encryption'); $users = array(); $view = new \OC\Files\View('/public-keys/'); @@ -259,7 +260,7 @@ class Hooks { if (count($notConfigured) > 0) { $params['run'] = false; - $params['error'] = 'Following users are not set up for encryption: ' . join(', ' , $notConfigured); + $params['error'] = $l->t('Following users are not set up for encryption:') . ' ' . join(', ' , $notConfigured); } } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index ebf678da78e..5f3d5005090 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -881,8 +881,13 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { \OC_FileProxy::$enabled = $proxyStatus; // share the file - \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); - + try { + \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); + } catch (Exception $e) { + $this->assertEquals(0, strpos($e->getMessage(), "Following users are not set up for encryption")); + } + + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); -- GitLab From 44594fb41cb8883d77e0c375a734b3f4a2ce54d9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 1 Aug 2013 16:46:01 +0200 Subject: [PATCH 064/164] make sure the first breadcrumb item is inserted before any other elements in the topbar --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index cf4e72324dc..a92d41f236f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -387,7 +387,7 @@ OC.Breadcrumb={ existing.removeClass('last'); existing.last().after(crumb); }else{ - OC.Breadcrumb.container.append(crumb); + OC.Breadcrumb.container.prepend(crumb); } OC.Breadcrumb.crumbs.push(crumb); return crumb; -- GitLab From 0c1008bb69b3ae68b2ffd51be3f0028890ea94f8 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Fri, 12 Jul 2013 17:29:08 +0300 Subject: [PATCH 065/164] Some styling to user list --- settings/css/settings.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings/css/settings.css b/settings/css/settings.css index 3c406109a1f..67aab4a461b 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -57,6 +57,8 @@ select.quota.active { background: #fff; } #newuser .multiselect { top:1px; } #headerGroups, #headerSubAdmins, #headerQuota { padding-left:18px; } +.ie8 table.hascontrols{border-collapse:collapse;width: 100%;} +.ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;} /* APPS */ .appinfo { margin: 1em; } -- GitLab From e064e53aa318bdfa43e62105e56f390f19a309f4 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Thu, 1 Aug 2013 19:13:52 +0200 Subject: [PATCH 066/164] Save the plural information given in po files --- l10n/l10n.pl | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 9e5caa6badb..2a02e19c714 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -64,6 +64,16 @@ sub readIgnorelist{ return %ignore; } +sub getPluralInfo { + my( $info ) = @_; + + # get string + $info =~ s/.*Plural-Forms: (.+)\\n.*/$1/; + $info =~ s/^(.*)\\n.*/$1/g; + + return $info; +} + my $task = shift( @ARGV ); my $place = '..'; @@ -132,11 +142,15 @@ elsif( $task eq 'write' ){ my $array = Locale::PO->load_file_asarray( $input ); # Create array my @strings = (); - foreach my $string ( @{$array} ){ - next if $string->msgid() eq '""'; + my $plurals; - # Do we use singular or plural? - if( defined( $string->msgstr_n() )){ + foreach my $string ( @{$array} ){ + if( $string->msgid() eq '""' ){ + # Translator information + $plurals = getPluralInfo( $string->msgstr()); + } + elsif( defined( $string->msgstr_n() )){ + # plural translations my @variants = (); my $identifier = $string->msgid()."::".$string->msgid_plural(); $identifier =~ s/"/_/g; @@ -148,6 +162,7 @@ elsif( $task eq 'write' ){ push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"); } else{ + # singular translations next if $string->msgstr() eq '""'; push( @strings, $string->msgid()." => ".$string->msgstr()); } @@ -158,7 +173,7 @@ elsif( $task eq 'write' ){ open( OUT, ">$language.php" ); print OUT " Date: Thu, 1 Aug 2013 19:54:51 +0200 Subject: [PATCH 067/164] Update l10n.php to read plural_forms string --- lib/l10n.php | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index 8348962cc10..d24717a23a2 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -54,6 +54,11 @@ class OC_L10N{ */ private $translations = array(); + /** + * Plural forms + */ + private $plural_forms = ""; + /** * Localization */ @@ -138,6 +143,9 @@ class OC_L10N{ } } } + if(isset($PLURAL_FORMS)) { + $this->plural_forms = $PLURAL_FORMS; + } } if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')) { @@ -177,18 +185,13 @@ class OC_L10N{ * Returns the translation. If no translation is found, $text will be * returned. %n will be replaced with the number of objects. * - * In case there is more than one plural form you can add a function - * "selectplural" in core/l10n/l10n-*.php - * - * Example: + * The correct plural is determined by the plural_forms-function + * provided by the po file. * - * [...] - * 'selectplural' => function($i){return $i == 1 ? 0 : $i == 2 ? 1 : 2}, - * [...] */ public function n($text_singular, $text_plural, $count, $parameters = array()) { $identifier = "_${text_singular}__${text_plural}_"; - if(array_key_exists( $this->localizations, "selectplural") && array_key_exists($this->translations, $identifier)) { + if( array_key_exists($this->translations, $identifier)) { return new OC_L10N_String( $this, $identifier, $parameters, $count ); } else{ @@ -235,6 +238,17 @@ class OC_L10N{ return $this->translations; } + /** + * @brief getPluralForms + * @returns Fetches the gettext "Plural-Forms"-string + * + * Returns a string like "nplurals=2; plural=(n != 1);" + */ + public function getPluralForms() { + $this->init(); + return $this->plural_forms; + } + /** * @brief get localizations * @returns Fetch all localizations -- GitLab From 71f43c5fa1f2a498501ad3009b49c2e84f71847c Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 16:24:29 +0200 Subject: [PATCH 068/164] Add OC_Image Unit Test data() somehow does not return, what file_get_contents() returns, so I skipped related tests. --- tests/data/testimage.gif | Bin 0 -> 362 bytes tests/data/testimage.jpg | Bin 0 -> 25392 bytes tests/data/testimage.png | Bin 0 -> 5391 bytes tests/lib/image.php | 220 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 220 insertions(+) create mode 100644 tests/data/testimage.gif create mode 100644 tests/data/testimage.jpg create mode 100644 tests/data/testimage.png create mode 100644 tests/lib/image.php diff --git a/tests/data/testimage.gif b/tests/data/testimage.gif new file mode 100644 index 0000000000000000000000000000000000000000..3026395c5e652cb617d6124df386683edf4166e5 GIT binary patch literal 362 zcmZ?wbhEHbbYO5`IK;*P1dNP~OiWD7%*-q-EUc`o|G_}&B zy7x8jkFS!?6A{_wa)R&F^cvTe{$^3ea5U=vllN} zJh^**<-El#%q;6StY5d5m4(%;b<)&@OZUz$YU^w|eB|h{!kzvOr&`UI%S`K=@4Mst zwc@bl^Q(839>1T+3Gx&pny1_|cHQ}BaLRM_UW?affu7RnOUaywQR``hQ?S cfrpM%|A{3}hME2es6p@yUgsg^{EwagoY-MJbnY}Xq zulqj7s865w`}_U={zs4FocrAO>-D;>>v>(T>$>iv&GyYch+OX6#d8o24i0ny{6L#s zkPJk+hj=eB5$Rsyz5Di&l2I~KQ|{kSd7R-84KvpX9&WA^oE&^-D)W;MBI0Y2{*N@FIh=K_3Ai)z{92N*g zfrCqdv-uICgO>`gcISbEkB5r_A031b60g9|$V)WJAL4+ZXowg`Hx_e*7)Or{yhjdduz}M!FlV1Iz#fFi*>;u! zUWpQVXMy3OF_%F2{xRT0>;wn2;IrYmh(j>LLu~lL*tv;OuaV*5=^-c)^D7$K``hTa zC64scXo&sw)}ZXKC9&6oNfIGc34C$%0b=Zo(K!FB)sx}$nZeh?g2E%<+>8gqZ;29u z#>2csz1~s@>a`^N5Ck0_R|)31RtExg_i=4|5xP`L;sOI5u<$~}(U{f2JZ(R~@+YzQ?W`a6 zEvzp87x=)}BNFWLE!+~V# zaNzn|D$qnugGJmGM8TrBgDBPuc6Jybz+@ln+kZ-M!T`%1tTF&U^7;Qkf_+wV`Cjlo zftlc6Z2d(Xb=KM}Q-PBmb46 zVJ4AWWOu|)07qRI5{P&^68-51m{I@P55N!@KR`?X5rh2=VFstca>SB%cq(sD>Lowj zpj1?J*KGfC!OBes2vV;VnVcRWw5~zpLy+q5xL;Dz)Ddm;4K&OaRzkuDOt-7PMQ15N z;2b50vcflic^-eqKtypwbri7$f!}98KZC%ST@d{TrR$}U^h1P=p zGpM8=JgctjY)X*u3eCQKGxr7k)Mhl+_dbC*)NsT#){ERzASjx4m3Dc0!NGD#yEIg~ z2A_#Q;^q*9_e+2A*Gd-6AdLx)dRWR-|J3`un-j5U-15hlAE6r@an64d_wu{?YyI^B z^kE%vNh9j+$-z-Jut6vFA8*gXl7rFeFq3dDH~>dYN!VV5Ot%kR@4lvyFKnai`-(bh zW~m{w;^)A^&v5I>RC=--1!n5%(N*~(Q?*kPMXeBPYPmmePYY#Q!gdNpT#&4aV!OwXYuhsHuQ4xg=4ge#@~r18ha=Ds_V3sr5k zIS-nt2-F|FGb}#j=CW`-Gk>GddUQpYcg%8aWPFbAnn~u#^Us2Px(25#66V5}8j|Xk z!w=>3yG_`9cKiBs-fC@rj(>R*a(Lgy+3}&ry<@?RWW@{py0Qx^oQjxB~=Vcv3o%o}sx=h!GxyGS6zVP>Axt%u{Xvcev?I|+7@+mO|--Z@PaCyFC#M*~n2bW|{srqHs%G12Ai~X@w zMO{@}>~Aa0tsChWu@e`c?K!Y^^XJX6If248u|)@;Yc#b3CL=b_ zVunXUT*F>CMQmK19$hGyu}`;kDqLS%r+2{>>kt>G9HOcos<>A~e<_cOop^XK>%7kLGy)4z8J97|z?*U?t? zGs3^@W(6kE4l}dk49`;@Ih+!IBxJ(X%6CTm_S1!_HVca*so!66J+cp&`%vkg zi*v~>z}3+?KiB15Uu|5~aeXG8(59uSFAlf)Lk&$XUXL`qHq2zqEBapCatJb+Db&!?5dP^aqj+XROWh-`qI1O(;Y~A36~&Ext8-mVKW5w(g_dTffyKTrwR~>r zDD*D$^LbZDQg}IB#zOvx4&`~8b1w~FYOd)`>6tYB93Snq{%o9M_SyK+p*h38225~+ zkdOxB3hNd`JtFw`4zADtL$wiW?oE%=!-{ERqy~HBJk;=-V#q2o)y{PC84r zQw{tau$dhnGWmup{3W)3QNM9|MtI%H_N9kpQLYkQXsKg=%rs>PcLNHuz)qV@xwf{@*0nQ zdiREX*BOhSqn{QE*2FuVUbrzPM_O=Xe(L-V|I z-uMt2ar``CNF0}FNV<=MMNFZA1$3gWS--T0$7+$YcDYTMSB$^5q47qvA*A{^tu64Y z!u5@*Bxk-4g`cITh;i5kXPboQKCJuGS=j>NxE>|9sAH#ErL|&Kxg#day-5ny+^*@=cX`XhKNI`^Uq1V1IEL9tkV# z39ut@$;-7r_$%E_;F*rEgp1gkn~$cCrt8cSPg~e%PnAxk!aJ@)#t)*AF3z~-o6sZD zV+YgUw5W?qigZPDJ%gRlVgGFutV$=Kp|JKc^jAl6vkU6 zWGptjXWOp8k)8(J+yPVnmRt*0)lKf?ev-(_{%C-Jk6{r(0kzd0GT5r1aSSj@1)swi zH#T$J)u7>k5D73doB-EhQ^)Nd#-F(`g>y_0^$?B1c;O*0F>MX_O3+Hc905w)ZY6-aW4o1b08}7|;(u!; zfUX9nFadt{qY+GivB`lyB>>kZ?sn!_G!~<+UK&JJS8a0yC=Hhc6JS;W z?DThzu+VKabN+!N*w^6EV2F)%?EJU+%GaKlg%GxPtroB7We0Z0)OV62RE41f1!AXvigI+G0>Pf!d$f7&w-nlh^E2Qf0Y1MHC$c741vf0e>T`{!)*bu za$zZgPl?`I^#4mge3t+iKVbhCKlocy@IU+j(H+JQ^0qAShbMzmkOt+BCnFdA-IFm* zL7;*^JQ*w*AhcxxL`8oIr$AY|!zpp})|R6i3(pRS{--+B*i5exsP1lv8af9)${ zDS~I))mH``Vm1ggp)g(yCi$xk5XJ0{MSruwu9g(=gYA7E_Jd(2F~o~uAu!DBP=q)Q za!?}?6FlH0;uvi0Na&q>MH7&L@qU<*t+W7imH|VHSSP@$Xjd%S)tTLH3xZMp(FTa~ z?z$_qTL8phNV);<2S7Fda~tfsv+}zQ07E+h?2=Iu(LBQO|CU;(=v8HQ*}fRo@>#EyQp{21(V z*xlw|8S=;Oyhv9Qqs-m6Cy@JC+snr~8GQc>JO2NrxvvW>j7=Od_p$yQ9|-7)(bSF; zYZ~o1G1$T|X=OANiy;DpPjGh#1KqB>Lw~Fu<6&^u7IQf$e-L89Q#{Zq@-eWq|294# z1IM`HZ`udez+`OTKJrO&2!(?1@lZH;;I1+Jz(GN{c;x$;`6wv4d8rQbut+ND9YcNvU;D=F9TyL{E-oZ#0<%MgI8nrv`N7oJ47?m8XV3 zo?Tj>$;MH?x}LtmIM#RA*O#(tJ+}3f2q*l*NNmtyjQp6UF1>wLvT(pTiLJ*)sX$9Z zXez3gboKUp(2S#*^!QBIs^Jm0jrm!F1lP#3t(mD&@suj{ai0=yE4f-s`Apx@jAvYz zeDT$eo~c>2VwF*jnfd3}B2syQQ@&cu*&MCKjp_7LOK$^fouw~U9}3KOp2)tR5hy=2 zNzRvPdd}?H)X}qsZBGx&bk?QuP`I~QiBYH6q?;Pt@2^}kY{OwOF;01n7gSUGLAoOI z8l8bXAsr9#p&w?R_a7`i9!c%igbW=W|AqomtN0lR#@cKecZLpUb*M_W$azyii~FBA+9%aT99f0m~$O^)6%j zs+W6^>YtmDw^7SR&qwIDZABDzbTWhu6$x1zx zejXRQA#=r(RV_}vU_lWsNs~>ANKVy~f8lR5hN$F9yUCm{eA~iC|9%1XeCSIjZ z9bJt!$Xb`{(lT%v)l`#^#34?Sztgm5oVzD9)xI2hx*1gnME$C(Tl!vR}*E8Y!id|@JO@&uNts6Z)<*l=d z-e5R?$fAmSJY%N0* zbN!X#mme*Pd){4sJmp(IDJM3YZJT?P!u3E5dSQBi#pS#6(0gvL@1CAB0{&?|x1EOV zhV5p{S1iB^YQ>X+yJFnW{-PXGe9D+D$kcO_hPCi6O)|;8DuAJ3eWJ^k`URW9>*`l) zDXPL}YEEZxbUt|~(?_+W3aY&9FKg{}wzW2zla(DY{wLU|>BXTJ}8=i?@`o%X? z%XCe-7SYIpwW)`zxC8Kyr#Rj!dROUio7Ek>DJXjdV-I#4hCIa?6Vh6_%E@tCSD~!F z?7Q!L&&IM@sFiF&m0_J=(=?$*4_wSeXUX0fv#7ZndU0@ZfhJU!| zK2K%XoLu35wSnM}t6dZ$>x0+R-C_Oq-@w8ikM55h94uI#5*KNBG&flAE<}C9g`x;J zZl0h-5tB$B+ft|6rHpr8SDf4O!OD!G%2#yD&uxn4HssD<_Dg2Fg$8xh$&K2A)Tiy?hw?IL46v8He<`cVisE^>=P30hKpCn4W7aS)i|r zC(5SXgaq#QdK6v{XX+)3><)4n%Hb__jBJe@dTbs~s1heP3B0SO@}yCbL!g6-z%P{- z>UQI;vf!P-%$5905^q-97EZ7ONcO+~%9@bO6dw}gH6JG#E5<+ixf?6uhvKSJ#r8Y!UfHPo5T%9%-9H|LmAj z&4^MG^$~KtkNiqs1-#|^^LWz*l1`|EPN z8p`<>Rla_3r(F`{5J$*2|mPHaR1(uEQzjhp$&C zxGp`2`?S+cr~N^;k^B@m8VfS24`!vIz(A@$;bY^p$`5so ziv}DGYO?gaxCG@5j~ev`;*~AF+k|xUjWm53 zDc3{ZrvZJA^?&4W;4+b(Ae7puJ#8QP_QfIl?uzo~iBujPAz%aJqkwSmAY4Ke9zH&H z1B1X9p~xxrQ!yXr;pLN}WI4jG?1|4UDXpiZa`S1LF0zqzHb$`A|B=W*%Qg?EUsnKjvZcSoI|72D})NG+} z^6Fz&*7KDD>^7mR+TPdg9~bSf`4trtuOu$laa6DFt#uobf9yr$I>qB}>MlOLsNXHu zF7fHA-%KE5o?b>Sx*{!#OELAR_>W*M3$+5LNe#b=fq}TxBVFNgUVCUKx~~Khb;YMX zxRrulSG^TTXzXxwpQ~C}#PEulwBM}qo5dMpO-A7pv9`Cn!?jd!@YV0lL|Jv`3>+;R zJzRd2^cp~%a9hExY^r=91&r%#Fo1^3eAT@7!wIOIrs?8&NsyGIZstHUi-g_!4x zj{0`g5g`mYNBR|gh^L4kPPddIE69xz0 z*8aMlmQ?1NX7PD_TEB3Q^*dM@#7`DP{6 zr6s{*RqNH{j`wWx?oCD~y}zVS_gy4Zwg1evpyxc(V78q|E!K5H$-4}In@U4G>NVbvv&?Il&Yr$7iv@D0H#V5Z{ zK1p2kq46!CrZ(y+`JVnU=X8*j4~bXcu}`g$XWg44I!*>ty^O;Ro{WzD`F_udaVvWh z-A#y7j3UT9{BbE&UV(2MfreMYV zJiEM10j=7DbzGNT3Prq7i!VGk{Ub?Ze*N8zERQRz%I|ATviYgA`IL>pdo^?W0^>W$ zW$h*Gb56oC#-3s6C9|1exburdw$N^ny*qcVTd>K z2DL)x3kl^gHUsYbr|PELUiS_-od_@?xZE9hteV%l{n~=EWc4q$@eID_-|Q|tzQ<^P&W84)cA(9* zz3vHFaSV-gBwlV8y5YBpXVNnt;o+9VsT}D)kE=i09hiT}=JZ9}TVs;9cuU$0QydSm zpQfX$%e|=fSUBe5OF3H-&gSPOrB6y{c-Eze)5(Yj(Kw!0&6NX=-UH)Py2q;q*hmrt zAcP<${58Ewk@7~rnr&Qc^2_n{2oDf9*(o3t4lW8G7k~Rpq&O&C5H@)znGf?yv2aV` zQ7I|wVZ$W~6E11KaWvO)H0xFk*wmfq-%wYjq%Tbf6LsyN=<13;Z?2BFUNAcxdUBel zJ9v$rj)}`{jh1rA=%OFram|Ayxt)ro(TzWkHbz%hyps#>Oc)D2d*;%;OXfFK$K>{j z$yv9i#9DXvd0eUqr>yQdps04vl4&C7^+S%hPN93x_!1l5Z}_Xcn*KO9H<))a<=x`@ z$M>GG3_WE`In4j?!m~?{%10_#o$uP`C?{yWSxl6&&AgGUIicKBZ)|QAd*wyo3H#t) zY5)1o53|ZY#bcIFC{XxS`c9;r{$$H0q1fsRo!J^q{tD$q4pC|gBD zbE#uOx%DxMZHr#rF%0=!;tG^w;?d|;%>0kX>W;4{n zy+%~RU)27Jw-BnEGwnL&wswsn_Z(-y3sUw@n7Q+c# zAVT=KxG2J1oRCu-=3(ZwV&V4Gd%9mzN=aEa#&3WU+9$0$+Oolx`rql zW=-B$e^}j}FA`d8!q#0Z4X&ZOTac{6x$j}9#X-IpowWFh*10noU$rd;Uac;EG&8i!nf`M8JY{3I;+R=*lZM!9%_f7I^wk5hO=@0)1NODS z`imS7V$)m>oLpMATV_+04;M8u$=gH5=W(<(^d{GZtQ=P@t%J`dWIu))+r)Am9cZkf zQnmI?Yi#X}&QekI%P4-xN$R%2=#Kw-R#wn4idEU}q`ltZA0AYxHq)Am69Hj-r^N2( zu{3^{qxX2zJNkabY$KRy|MF{>(Dd72ye#ERtK4qeJT6<=k0FmyO*H#e^O^&~A695A zH_m?)KiVCcXtojV@up!kbLDCfO>ci&pVrMGf76*We6KzP`^!$X-}Q}TJa*hAHc2PB znBY<-*9{j6YuT8ZL?7iK7!UP}^UotE{S(0O_bTtd$^$cK(ZKVlBwW=fIHwuH?^}64 zD}9D7H&~4%j;)3_AVx^BxIDEatKt(?$Dmr1h70$Txx|sttQV6)SWy(dHMJNEu;m8+ zM3#N8Bun;VP#~MKk^X=g)!L}3tC7jPhTZak=XosQqV}%icYR-$Gac-S@&RijyG*7q z&a~gH0ya`(?g8)|#NsS=YdPxUmBdK#cZzwUQ@1ipIO^`>H5>lFOLU~e2!03 zrfLIbu{CJTu&w#!ym7*g?#%7s^ciZ|e!)#huKC96h8hV1`D0pT&*IJm!ROe-=v&Np zty6y8CG)HJ$$*f&F(p@pfH;mD`)dM?$^07QIK39m$zRF#)%iRyq~mghH(O0fq4QeW zxZs3Zv%Mi{a%XM(dp#wEmPGhZGE8dy_-bajHzN=^ z<+IYe8xKP6*YMuWZlY5)s@d<%9)D~!CXVf5ed6cR>?rS6Go_?A{(P^)&a1NB_l+Hv zPsk3}Nzcl^@Tx13(smP)PEPu@30*3z{X)l)cs)jOzE(N>a%y{L{TpSEj!>{8agsw| zL&76K;cRV5I1mL7`C(=$<#cX6E66s?bjC$I?9cyqT4sSvg101DxY*Zyxsdz!9 zhvGA-8#lbj8RZB#Br=!DX&{D8DCk4=-tqEp;L+aV@SgB?M$|l+^>kD!Gr>&tTl$A9 zH}Tl^_TiIImu?u+NM5^6|Dn3yjc0Q5V|ZciF~55U_LEvP>fo3uL#C%zHlfpnOmF6b zdZ)@Lm>pbFvo|y+s`i^N#xP&hvGgR^J6%1**w!6QKqP9zj4oQhEjhHtD;Zeyov3uG zeC|P02}{(3G)4X(H_lgoLNABX;Sbn;0<>JzM9haF__UWmjU4P*B6XRVIlxt#(9Ktp$iDT8Wx`~q>~aQy;U zTP@}MgeLvFb39cp-3TH&{E=!^gr8;T;;^)Wu2)l9{a!vuQ@$!8LB5pmRPo+SaRX`_ z%KEzu_eGz@bV}YweI*P$jw`^xq?D*Ls<|5bA?58dVJ5=`X{VES?`XYEJifN)ttOQ5tepc~0Kg|L&2ptsXJH?s3%%x{F$`@*sNJC(TmQ*L$Db z@Kj;dio3(?iR!O({DiU)ts$pH%Ng>WiU^(yd|p--Fh>%-hvR6>rhfXTvc^JR3u#I0k)t#`%6$eOIuy^G@tO$zj69rgcy$v3 z8Y!WRA!5FQmeh@<^|_yHWRlsTs2oJ9UrgCuz-nKOnkaYojYLJ_n-fOd2p}kJy6_`{ zrKTKbA8pxpDaBFw7Nfgdp9Lj^FK?_F%~6GoaNAM0Xc%e|SrX4vk0|6>(#P8ss;|rl zknD}XIb3@7G)Vw7U9EBQ!>O{yv-jG7dwDGC`<*KP#X9n?!9Yy*SSa2AZJdeCUVig< zXoyUKEYDHyWoct`HHmEPD-B0g)_PAG^06Z3B1@WjeAYhEfq7ja(S#R5ZNwLav!ht| zd$l_s)WDDL{zMaT$U1y|TC;jy2Rhk@?+U#Qe^^W9oj99Tc z;p*MvEW}5qX}|*O{3-I@v%FEvHXVb`T3S`eQRG?Q&C7g2S9N){Q@+HhVx)9>A-d_g zosM(Sg4@{Ym!AgFDb>0`HFp%Vj;QrVbJOY9);-Mz9HyU0c=(h@hg^D zhZxwLV-#)5n4c0z_sWWX7h0W(`>g6wME>ok_h(gyLfS7>E%6x;GcAMbG~u;p=VN@s z&PDGdl@{c9U))#p+3MIPWGb%gd=l^zP$g>Vkmsm?YZhG?z*( zIgw^v1zbAE@L}k$5lUW>Q_oLc5~~S(r%|qJz`pnHF}ZpQhgR_RSpw3XV(@}dJ+NEzn-|%8oUGBIA+K2e5 zM?VGLiYfCpLqoIHYiGE2*N(SMb@Mlp-{Dq&_wUi&t`A+P>(SsvR9JG?S zR(7`d^YO77$}!AeJuX)SLcic}6M0XcN|h{rAow}yEC zO$C_|N*uaKa)?}F)aw(TaDpCvZa~dJyh;s^iP}wQ>n{}{TyWQkyloR&Pv%BJP}bbk z9uo3$Jc;#9Xi9t;@+91Z+%}=!DLiI0(NXca+EP4jDN>zHXtobc#4K~ZcYSFSGA4pT z=B5fjz;s*c-TAk`&Dy^L`3ef)VsbhElmV@$xMkBkOMKkz_V}>L1;XFSl=FtPtbcT z#8(@NcZ)xdh+#$odBIYQi22EC!zrL}JON;# zTJRo+6eyy1JsGj^+|>H6rAi@Ubjbh%?>QyDQUYVs+v_nm6;H&i4&+;3nw13e;aU_d zr^x^@fEHcZAQXZDkYl3}4V@BQZ4lozq#NK8mV*Q46i5McijU!R8sQYI>Mxu|qlq9a zrzTiVcS%3bT?&L)Y%BrLAeaJZ8~~=P+nBm-W6A+z3L6K^|4*1U;$p=>Fa=_i$N*@5 z!xZRui_=+{({i8_m{W-S3(y3Zqqz*j=`Q&t0nPx^EN&DQQ-BS?bV_`S(%%1ov}_lo zKQZQA-32McT>5uN*RYTRZEvIjO3_$Kxe-d)cTt*#p>)Sd=b1tKA9l7aO2@!^n9|k1 zKsvAmDeR%;;36!fc)+~kJCHV`iMSC+=eHom+lEwhr38hKg)|w4lnMhW2@Gis0;vuR zDF+tPZ5O>m1eI<<$_z`fg2q7Vz6;Xn|9}*@EFL$;Cl;}g7Hu18ni&Ob3CqDjj)4@o zCPZ9~(C)Tr=A$br=r?#ymN(6atF$yk&U9AMLjW9abkc@XVt zJENQhyL{ArHX8jqqbI;y45Q0vZ$dbd_Ilt!VB-LR4Fpmt5J=}r;C+Ow7l}A#M9_W^ zNVgeXZ9r`^3N{jWLzo8P7YU?mbK~I4{vNQhF^sChkrYU=!>9moBrx!N8hWqAuAOA6 zApTECYv7H9&;#rvMa&?Qf^DR?6l`2XWJPm;QF0JS*MM!e8SRpWenZq9mI5G(Oa@^b z4TN889Q_?p;F1WUK#t!Kg`r_ab?w?lR;PfcfoSWtL@Pr?Ub4r6X7&j%u5uT=iQFgR z261W=YJ(B=!nG)#PLsjch2tnN?rubJP61_aBU&)c3?sSJ(hWbO5NVYUybsjA~+%IK5J8|!4#|B zRXdj^L?NMv z(OlaPB8Z1UQhT+*g;duApIl-#I@{Zl;BBXxg@@Z+z$8d+khs|ff-?*yFrI|*QX>e` zXqkHMG44_#3i<|*wdoVp^Hd(MH=%L!=?kK*r5)=9$<*HS6fX0(>QUm8*HQ+rBk0Rn#yJ(a-59kCqLI{pP7?9P#K85fIr(Fn;@W#2mgk&|i zQw3{JfKS02f%q1WAgO6YBRCd=h)Kc-oUC9OgCkHY3FvggQXml%NoqjEL?RLxe;m$g z@Wtn9;0*)Ly5O`1g0nj$6w7ThInUh$Lkgfo!$DKW1I}v@w|WH!O;|8EYGU#`5H-OD zfnJ@GfU_Dn?`i<=;iw4&L4sxx95frt33Yb31gn9w8X(6C5;H-tm}`iKnBn9O4w)su z{o#-ar!{cCvK9~08f04s`fc`t(^fdGks;v+@3-LuSrojlgTRl(OiWs{jP^v*I}kLP zF+mgFp}p~Z1Rop39FF16if&J1setc6q9`e??SR~ZcO$KVT028S{l4#fS{SY zEBi*{ZD-%um^sf~PRax`D$0g13TxK{PC$W^mBCSy3~+>mO-%aT1#cN}+=SB_kgs5} zZ+K4x>P6xvl6^OplW_l?R3!c0BGr3~R3!Zdq$XiVU4kmP zK*7I}DgzY$H&WsJdz(~#KolVL36@kaB!<-7KS_nt?{a($so3-zT#4l0fK(*^Cey*> z-`k*q;0fp7%V1C}sB>6QHz5qEEe!=nVN#L(uwbiAqn_yRN(|1i|Q*(Zqo+_ zEe9$8(iEs8;1CLyvz>s0_fi;CF$p*re-?}C$`-0f22Q>Jn;59B(F;kzabXQ0tQG*L zg99nhI07rCR+QOQE5gd?wZOnS*MNa_t5j433qwl9KqMN0wZfZ~+bWO)$-yzDA{N%a zmx?Wal#07yg);+KemI@lf)$Yj11q*x#KQVptw^+0D*|->tQGNr1>jLJux@~&_xG^6 z8`eK+MgBiv{jFB?M#hA*{`J)cQ1zA~qF`WE6i13hEUf51ip4b;)-SM$fRVkBpoP#1 z5?IWbaB&KP9D*xS^umGlD7ISsJFcXE;@XCdtJ0v*!l;!5lUBLU0mtK(f@Rr-D~NPh zT#gx9~-j4-hO+S|YmiU13?WGt|tXap%D0xa;?|5h|2(G{NMkKP6mLMs?~ z7qD;-1c|OlMh>Fuzf_H|D`Kif#LytxNkhz7#gZUJ0G3#!Yy=x7=+Yzu5B~4n4J5n* zBke96*NLDlwQ`q&8NvPn6Z?DRNRG|QL3sUJdt*B(-zGK*dRhZU4D#sEy)WPkIhJR>p0C;!W z8{Rw8Q^R=>5?cS>-T;y9_sS95hWov81X7snjLBV!1aX8_Dd2V64UVnS@wW!YPVESG z37A!o8EiK=vUXHjj*sL)a3X*~b*sTq2Cl;vkH7cfaLE3w9kHY~?&x%j)IW>IEmC(k zI6(3ETNkbj$%EjKzX|OgahuaWI~*V{+NmCqbntH-4q)M}KHM&yViTeNtR8o@IN<6L zggNgURJeRxp9TpmrZup(OQ9s(Y6zzP^YRhw`bhZ*91bZTfj)3RnhWFyH*q;A z!2dl5zK)59LT&v$0R+A*B1O)uXZ18DUAeTW-*cK+>c7HzN z{Hp;m*7vb`oykI$->*iM#D=Q1~K8_;Cv^y#=g(}!oH>-G7)@wi8jTVOrzR}^P( z>VC^Rg~K@GoQ0~Dv$6?Z`#M=>ZnSEt5Pi?BW%YTJ;!m4){h15@9h{Hfrfx@l@2*G^ zqE;ypHvM_q$no2kjUNIxs`dnmJkK`#p;RN1o9)r(s&jNvY|*O_x7m=mX|$zBnbh}< zrEChXqiNaCBq#f8-Mr$O@*S(5i##oaR!OIwSYrzea#DmV83>amWWO>-Svi)aRgqSi zKeY88^s8B~HsluLe&ln`L&X0ke)$1LW>FnKdB3{l0Dk6I2Su28;z(SJez@|>ehjh}SLY?z&JPZY8;@s7HTajR~~bV8S;wJ4v|ndulrB}q9_b+5d;!)MU> zEWe9u`C(JLO(>ni*y^zg_%C46PWz7Q*;1YgrzOZOx1|wf@>{7IpyxW@^jJRjHUyznr2ChgnZYwMR7%ga~4;xNj0_5C_-lOF!DKlB1;DuGJ&BlS1m zwfgv7%B?sD@vijq=7~g3%&p~9K3UQ)`zdyN&-iIF&6s8Cy^of3zmEGoJ6$TG*?CCt z*0E)`hUTL0tdm9NhO>h9d_ba^f^ZRn+ty1*a9(98&} zpG&;I(m972-@6Wzj-R&Bj1%32Fxq}!Icruu+&3{-kWXA;F2P4I+WLID&Bec7?|td4 z!jC;C4@A>az9b))ucgy`u9bg}`s+#!bHudIkJHE0k6T?bDv?*?x#A>2;YP_OR69e+ zRjAvp*?+o>OydyBU+O`s3ZDF%Nkg89D;ybq)Q2@)&+V@n&I_;ZXs>Ua$*i0;ouG@X z?S2qZ#Pg8b2j4i@(;IhbhWA&-+>MCA*m4zS?L|XAHvUURrX_UGpOSM=mvV^db>_)H zYE@QH|(h%RJaKA|N0ei-96k*yRw5rKtQhU?hU zcqY~9m2pM^fpQXjJc$1?-7xqXTPcMC>(c6@eUD_8cpI(i(D+P~mLNVIgX0ql{IwH^ zPspD;LEuX!VX?8mJ7F*6o<+A0gY=da|vj(Oo_ z9KX()n+uWPbM&3v*y4q;YE;qd%+N5MbUipxbvOlMOGiXL*c! z<-)5|HXAf2#`EmlqI6;%hlX)AY&VF#OMjw+E-xEDbM%^%Wb@2Y^kGpLFuklX!R3}q z(f-0ceLc5Ba9w^mBaQ67*7NgnCr`U6M(AgwIAV$lnnZbR9?0pckfR zzJ=P2wUEbaU5GEL=^r7o?a$s>=ViOa8een8{0S;Z>`dw)yACr|VCs49h8UM({rt!3HkaF_~SMld?I+`!hF>chXOjxqpUYg&MXD*T}_@d+@+Gb{YtyOegw9z zff>1Hl#p`819WP?Bc0>Z1eKe*Onp*aOOlsKWHq3!bz-H={pi#b52LJ{?$Z84<6}&A z3uGTwe80KLOcuo~=_swH#=Et(ih~baMASpF!ix7jV|7S9J}n@AQl;wG^!c;$Z(r-N zgzrBdH4{XOe;t)2rdG!G{BcFQt3;D^_FK*>yMg0p`L%RG##TPMebSzg= zbKOjT_GmR5t{wNqBd#mGcbGZ#rufx92_X%jI?u2narZjz=YPODBkdA`WZK8LI_{ntT(^h{%(&(s!>hG}6bHBT#8@w%5FwnXO{3 ztJZd{o(XLVLH5@!+)u12xO1nsNZMpdZ7EUxf}d(hC)zvR;n3*lr>phhSC0LVy~sgR zAXs+ru9xLKle*VeuU=m)oH6jX{ElDYZ*ZSnzV?Llg}c{9h@M?%qh3l}{lZ&uA?0WI zCS=JU}erwMx$7h zJ*WzXC+%0lglI1e=+#}~CG_-u(|Y#YNrfQ1!wip4jU0@kU(c^qb%wk@`%7Ok%gs|x z$A9=?ACuQ1wva0~l#~NMCJcHBKm2ehxThdo?P}>VG1VRqhU;wc%O{;%Dae%<3kD8l zy|VlgqrZ&6dgoDlZTO{ImnZQ-M}-q2$B{lSNJ@}VlQnvw`NXU0Uh-Q^!r8kZ4(pkypL~+b(HAlk+I6W#jEFd-s2CW(yeB>DL~6lFuKo$liA#pfn=l!OSd2SS%Bm zj`L*Wuza>WosVKIeEL8s+LA(H57!9`Eon6hvvGpAStZAxG9^xlUydg&;nlzTj=fbl zF)NQ@L_>l(rmq06>27E$M@o9{n*E(jcdnNH?k{Qf z45+5>`nf#!_k8himhYDKF`^ZWeAzyanIr}^2c%aoZP zJkbA|yYcy1wyg)f2X*)y-zAMr=vYv0#6y#nB%Lqm3M$j?q$dw#6*(L+Ei`SXT}z4j za%bgg>T8pgtHrN%nF@If#BXZXJ(6Lzwlq?HdN)>*@IY0Hl|b0>J0m{?Cyg~gJbO+<9EceJx#)&KUBFWr}JD&#ZYwW57R z$eEVcHhl+HPb&%~c%(8+u18%fC`jL=f`$7@W84u^@gtE=bIOhTMaE?Mhw20GC*3J9 z;x}`kkrTEU!guo=D|$M9+ha>xq86lRLRP;h>ZMe*UH`7Ef9m9O3b_WMkK7bBw*C3t zE@96(asRV=hhxs2+yD4Tq|J|*=vVd_wTW1S+9(d+HlCim18)oOMaV+3G~WxDGQKeF z;^L&a*{^z58yA(F{>k6h+=~@&8`%NZzTWc>3H7-~!EQ!& zYR*G-Ae+O%-)r_V^LejJ59utQ1XcgM_qcc5Egb#0ck&*I|D$Vnmnb@V*OxC{O&r&LN@834@`0*_Ou5pI_`2nMB%*XA*5$RkX2;g$ zCFxEy8Mc>QublyZ3i!RX$qEN27ysMs*HN&?=iv>85)08c{vBJA@!-ILQ4p&=%|bamhSkJDEa?&aLYC+a*t zWa9NKnewvN;qHYD(gN)qqHeu$iQ)dU{U95Ac9Mrimzu+ou&QU42W8XjK|rV!dDY3kkFP-j)LyUf~*TmeVW{q`O!2Ep7+a$4F6IH2K_&kde6k@EDbe1v|b zSh`O@**1#0?EZbe@{OLim79?H?AJ`e$(VV9*C|}Dne?(J8K%8skKVtSfAxU=Q|l*|wd?*@^#v&qKl zS_(BXyb)$oIxBy+Uzy#PcoXtZ3$u<&6h7vxLv8keqZpSlauX_DCZ!JGpj?ZWAwFSb zK>TI?-Ts^dxrY`>+l%#sPu)Cx@MMaRwNdz@^~{CPsHjBtrV(Wl#@kxAh;u^2^-+)Z zR#p+~`q_BA2^iZ53cKkfaYas}n29A=R_#XCX9}a|45aa~^96EB6$QCQ%DQ!+RChwRE*@ zefYyDD8b>n0vYdJt>>kak^8%^s_i}b+L1Qfp-i|PJ}amC8oK$`z6C029lH%B`zrdQ zKd(A07@XA-jgD;$urL;U%N{al9`!&gxp#45E35oE6OEH)WnCY2@FITrGt$Nu2Duq0 zwf8wU756M<%|v@@=5oKqqcIvV2I?c=~F6MXn)`s)?sAG+P=k>C04K#$xxU z!9xkItsY$fEpVI%?Z8gHKLQtt>iLh5t+Qwy`k>FI}4mEHx2g^TPhfYpc1b-! zQ+Rjgn+Jh#Sjqk5dDA=##G5yM7ddOyIy0&$9tbDUYF2(Dsj^XgGI;6>sZ&n_t@8I$ zlwk??+eZpbVb3_;AHvV&55A(?;QYSd#!Z>1Mz_j2KwR+D8Sc|EF-(b3#0sgu^2|i9 z&j|C6_3tH1w5Rwa&Sv5KF5?H804YUqqPEymEAOw3_vzU6oK);;Sqz)F!JV=fDrJ?Y zP*0oHPAd4Bg&tAdc+L#z>wkTi78Yoqw09*Vw&zw_QsLeQ{#0z7WlBeIa6&i2EQe3u fS#`gC_0+HalbZ z>TA#N$;aTe-NFWo>t_p8wfm!Taz{(zPNO4PQ10YGKJt`P-RW+dJRzIQX$S+JaT1;y z=A@0-{{t?NFctM!--W=&W#56U75o&wrfO{@0EQcOpL$x?IHSnA#}~`))H0rfvGnt8 z2FaxEc+-)%z)rpvkl=2%I-VRJ0^4jHO<<$jS~F88MhbM-BB&(nqMonUUL_KwIy*_? z7X(3qcv+V}23InaUS@$G0<(4s>Vy7T-)Q9@RiH>Bu76TT#k6`>VK1hVIRAEqU0~kL`9k|g?>LnYF5T8DL5bm3)@~e{&I!zjxU>!)tN$_vZA1gMFTj$? z&31pKyhtW>bO`ZCz;_8=Ob~MHtW=;kqQj+1=l->DaF8e~--W|DKzJ%3@H-HJEA7_Q zA!Mos%24vs%6Vak{=s`9O$z3`ii+n3-U5fDgKGVKJ{JjcKU%NvmKm8B5^~hnZa=CJ zw(cu~GFU3I>Xw|ImLechZ(KH+vM|TQa%VSRjt=-#K*mVFDt9y4Fj?05M!|`7l#C3E z%;9~DE+u7EyLt|Id9PElMuWqmM6aDbdRSXW+jjm3^2ZV7-K_4R_~K$B3(U(e;};Xi z@e2^q<%!o)3t|NyM*=S0skFWb*Ot{bG<^SUn|`8QgI5KFL~hb(h}nHi-eP_xXxA?d zxhO@Tmhp|aVZN~1hNeEv0zGGcTF(5$BFupQIx~)5DoeJ}icq!&IoEdD)6DQ<+O#Ae%@Ttb+lv3>Qcqhcdb!MD8OWE;IOX=%# zS5r0L|ITjnOHrusCgZ2U*Y8cQE{uF(u&5Y4ZedPD-p9vRY{ZF~k7x+;`23ou$*k|+ zPbGo(=G_p#F1=bALf7D%#0f42i172o4bOOZ{SL!;9aZN(CZLV1u9k`u`bNv39GnB9 zpgUkNLga^rTvT#2VS_GDP8dZ85cW7}AOG)x^RtpP1P6+)Gvz0vmKg5w@uT`|R~Oe% zY(%+LJ3XkTp+35EG~dTUmupC0`Z*Vp>SeaD?zWFXmKC4PApFvqt@c~&e!2o#J5;V$c-`L znc&sBgZYBwYOZx#;>A`I2fPJ+_BhYxCO0`V=B&wrB z>4cT|c_Iu6gjWd?QO{Vw?;E-qSxhS9{vQ9MrCu;(7rh=`qSl}}IvHfx~tN$?wm z?)7PWldB-&?D@GPEexBQTHknH&dair_nkq$UtV8Wrc^E(@Dm=WsD5^}6XmL7EHjG! zFEk_z=UWJ1rw!)*KBBKZBRKIeX<9*}z#7BW5_*f8^#&qyN69xysGaKLp%_h_soMP@ zi%S{5{9OAP)kPeRB$#=K(1TsrAGf^CZp6VsE^gnUxBJx4uyAteqT#~r$r(;k1?2Ia zXibMTW>_hLVVer1lW|SA2w-OYmp%p0v+qQ27EkQc7o@7p(U|B;G3 z67?bt#w=yy?>T+cMm0L0-dpl8*L@l@o?V^*(fr~yFi9PmM|LZ^#UyEFJSNR5S;Vfi zXQ}bMdY3MGuQMPyZsyPZj=|Bsx}g5Ii$U4QuLa0Vvrb#-va-!srnQkAp+`*1ldP|I z=l@i@v0AaRu*!<HA zl!i64yQuEHS=WJhc;tto-$t^>OcrIQ3`S{$*slpc z=bH}5Ngi@b6ucsQr^a<}={g9Z3c>8#?~Ra}rZF9Dqal`u=$--oqr(%bU+jg%UI&pL z*a{0Tgzn;^{3Ra;V=DU5z))Zz*6Gp0kX^VboX5wCQSNH>FD3idmV}GL=%6@*Ou!n~ zAis+ai#TJ8W9|cb=v6^+Mh5d}2nz{i!rFXX5O+!OM2pipwNh&4qt%1M2FZT#6W=$( z?x}U!{KI4U_MeTa-TJ31&Bbu0I>(9stsjC( zD{lNdnuSr-bS6kyd$@DsCj)E(dk0=qqr@EUrz=r>c2CljMP18l?FYk{;wZ87*#7^% z1Hja_Iq(7JDr$TnDPy6T~#um(JWXZP10bN>e19N(KNAIyQ85Vicp4>05BurC)#f}eMuC?DLeM}o^U15i| zjS_EQi+S*~0zF5!1@QYu*33+~4a#T}HPu>lUwis)M4`~6^so9PB&1cK(9GD>^xm($ z_h?ePLomGl0ZYsIVH}PjSsti*(5qtg9|!WKpX!s63^z9JmBPgltYZiy=T+q4T4}&JHd^9}@A;H=~Frc;g-ZwvH=Bd1R+ChOO?%$*?~P~_-qCM7#iCyQ)e#nIk-bs$#3*!Fhs(P=Fo?V7&vp0P{`zdwviy6okBkz_17XtT z4o1HR-RpRS(xs~=i)Ti9qZ*GX#9pR^t@a$%Y66BLEt64y>anyWmyG1|O}1bQ z+*&OEdRw$Acw?#ke(rNNtIG?F)?)SCRY>R`P8psm8&{*Lftm(^jZb8 z!U=7r2EY}4^p3(W?6B~ccUVbcqSj8YHU5-a{*;vk8H)wjhh`fG6xW6AzZqhHi-Cm; zBW3YDuO`F2k%iEfI|nm$mE~%|gd};-juM8f)bpD_j#-%Pg$5eH5Qud;) zX#`q>Uf%6#z><97veVSnT7B;4hin2}I5G1G(89&CR#m}|MaB5S^0&4G)5OzJ+gyfNyFEhs?5BQyXv7#IjM@=Lfvj;%>OpS?V> zD;j6H0>3*9Vj0QCC6LjtY4d=9fI%7UO^o3mcKBvjD88KwS|$*G7$@la4Tw~o+?J&C z4-WtEJkTFMJ2!9R$X7Kh6akE{a{J=VjAdx0%naqElbwQ%

(Mz?qx+kxRuJ{4+7A~qo?Ny+q17FuLw3I^Q2_npcTYI2j953{gR|aG z`P;LG+>kDXIxzJRpQ>0rk0VbFCcx|H9}|3&tYZ%mziEKcwYAMhlPb^U59i|t9_?m? zJ2*LsPr+nL6hv0re!IPNa;&pC3$_18quLJLp!I~fuo`khJnvCsCK{SR8`!K`8skjPI=4A+4yEImWgcd zfJvc6TSxJ?1aS5d4CIn*ha@d4vA}X#z*E>V7 zlaqNtsm)|o)|0PtR22?zNG0QxqiWdjtKVyD|4uu@1_YuK5|d0)wIU+o)^(0&|7kyh zQ!bn)W($3V^_`!^qldoS4jL8|tZs~V(aDmry>EF`@Qs|5LzF+fo$A`yV6!&L+1tl) zR)$fn*G98mlouI?CcLMm0d;4@wL^5GP0g95 zM=ZL6Y42LDi2>)mc*7cD0ABAGiWS%`LAU1Z$abo$&FM1AVTMtoi)+B8F8`i`m}X=? z4(){-giN1#)&2tevz*6<4@>hm{iQEf|3_+1Hq6lDMegS9B!>2+Kt$V2U0SjCQad<7 z%o@FE_Aogm`Qa|%StfT9Vpkdn-Coed%>6obENdvS?(~9s;eq`910PLon?Ru@ZxeJK z96MLkWg^l51|Va}2#M4c^O_zfJ0S%`mP!0Ir-oi282h8RZm9DHkY*j2m5S>;d6)U) z!bz$@`Hj#BVEqtY5L~D|%w(&^J>{zRU>vqEl%+Zaxb0Ev%fjV-H|aew=O0RR=GO-5 z2ae0FGC$C_Q2W4_SNIGwbOI34`%J9;2Z$pQGE$Vrj9+W8Y{z6u&ugEt9+WD--5yS1 zrON{pe}{GWdYRzC(~wdBmn#AOv;fFfHn4R@xq7kkgy@GT&bJcGOHC z@h!X5&Ghy0dT-2{)uZMbo898oWpX^J@8=F=#4R=Wt)A_hrdX!O0zYr%miq&sD1bHx zdj##zzonh|YE6@Sa6>8SI7DS*$8CF_*LCc(qrIK-Jce?smzVnphrGWti-UYdfBu3; z=GNRAf&kd1026C8V6cBid8JVK zjnV~?o|hPSmbfA8T6xRihAWSdA=xVdv!b9+8M= zdv8phJm$;MFBn&W-SBJOObLnp$=!2(AyyFUqGh!{OCG1=;6QOO}?ZtAhV zYNl(PZ%=t5VP6DM8Y9ySy&7RH{xaapX>!v>IwKQg_IC|e^haF}&;9XuG{A%ecqBmf z=Ko3G{O^OjOA?N!&JoOz2*xP-`TRa=Arc_f!vW6_h6kz2O`7f@@Tl@xT?N^G0m(2M z4rS*UW({Q^$>bTzviu3lCK+#d;RS;4Di>oPN=E1ebM@oQ2U-1N~De(m0~>=3zGk0ZRr+gun#bJdbr4@03T*5l0N-8t)b)vAH_9>`Rc% zl4^cvuJm5K$-*RDkeR``Se`yYCw;Kd|HEsz2sPn>b*a)XdrWuJdJ;x}zJ)he8xaij zU+!M0usyqrJVE>YZ;}wYL5@sPS!9d9no;O}+Eog5y`h@!OOf?pW4Z(6GeKI + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Image extends PHPUnit_Framework_TestCase { + + public function testGetMimeTypeForFile() { + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals('image/jpeg', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals('image/gif', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(null); + $this->assertEquals('', $mimetype); + } + + public function testConstructDestruct() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $imgcreate = imagecreatefromjpeg(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image($imgcreate); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $base64 = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $img = new \OC_Image($base64); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $img = new \OC_Image(null); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + } + + public function testValid() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->valid()); + + $text = base64_encode("Lorem ipsum dolor sir amet …"); + $img = new \OC_Image($text); + $this->assertFalse($img->valid()); + + $img = new \OC_Image(null); + $this->assertFalse($img->valid()); + } + + public function testMimeType() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $img->mimeType()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals('image/jpeg', $img->mimeType()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals('image/gif', $img->mimeType()); + + $img = new \OC_Image(null); + $this->assertEquals('', $img->mimeType()); + } + + public function testWidth() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->width()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals(1680, $img->width()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals(64, $img->width()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->width()); + } + + public function testHeight() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals(64, $img->height()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->height()); + } + + public function testSave() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->resize(16); + $img->save(OC::$SERVERROOT.'/tests/data/testimage2.png'); + $this->assertEquals(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage2.png'), $img->data()); + } + + public function testData() { + $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals($expected, $img->data()); + } + + public function testToString() { + $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $this->assertEquals($expected, (string)$img); + } + + public function testResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->resize(32)); + $this->assertEquals(32, $img->width()); + $this->assertEquals(32, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->resize(840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->resize(100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + } + + public function testPreciseResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->preciseResize(128, 512)); + $this->assertEquals(128, $img->width()); + $this->assertEquals(512, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->preciseResize(64, 840)); + $this->assertEquals(64, $img->width()); + $this->assertEquals(840, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->preciseResize(1000, 1337)); + $this->assertEquals(1000, $img->width()); + $this->assertEquals(1337, $img->height()); + } + + public function testCenterCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->centerCrop(); + $this->assertEquals(128, $img->width()); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img->centerCrop(); + $this->assertEquals(1050, $img->width()); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img->centerCrop(512); + $this->assertEquals(512, $img->width()); + $this->assertEquals(512, $img->height()); + } + + public function testCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->crop(0, 0, 50, 20)); + $this->assertEquals(50, $img->width()); + $this->assertEquals(20, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->crop(500, 700, 550, 300)); + $this->assertEquals(550, $img->width()); + $this->assertEquals(300, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->crop(10, 10, 15, 15)); + $this->assertEquals(15, $img->width()); + $this->assertEquals(15, $img->height()); + } + + public function testFitIn() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->fitIn(200, 100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->fitIn(840, 840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->fitIn(200, 250)); + $this->assertEquals(200, $img->width()); + $this->assertEquals(200, $img->height()); + } +} -- GitLab From 415e38fc505412b5c9f4b4905a1a9db3fedf110d Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 17:18:02 +0200 Subject: [PATCH 069/164] Cover more cases Use file_get_contents() and base64_encode(file_get_contents()), to load from data and base64, to cover more cases --- tests/lib/image.php | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/tests/lib/image.php b/tests/lib/image.php index a0e9278b29b..e9d614f566b 100644 --- a/tests/lib/image.php +++ b/tests/lib/image.php @@ -58,10 +58,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals('image/jpeg', $img->mimeType()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals('image/gif', $img->mimeType()); $img = new \OC_Image(null); @@ -72,10 +72,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals(128, $img->width()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals(1680, $img->width()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals(64, $img->width()); $img = new \OC_Image(null); @@ -86,10 +86,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals(128, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals(1050, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals(64, $img->height()); $img = new \OC_Image(null); @@ -124,7 +124,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); $this->assertEquals($expected, (string)$img); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals($expected, (string)$img); @@ -139,12 +139,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(32, $img->width()); $this->assertEquals(32, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->resize(840)); $this->assertEquals(840, $img->width()); $this->assertEquals(525, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->resize(100)); $this->assertEquals(100, $img->width()); $this->assertEquals(100, $img->height()); @@ -156,12 +156,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(128, $img->width()); $this->assertEquals(512, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->preciseResize(64, 840)); $this->assertEquals(64, $img->width()); $this->assertEquals(840, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->preciseResize(1000, 1337)); $this->assertEquals(1000, $img->width()); $this->assertEquals(1337, $img->height()); @@ -173,12 +173,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(128, $img->width()); $this->assertEquals(128, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $img->centerCrop(); $this->assertEquals(1050, $img->width()); $this->assertEquals(1050, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $img->centerCrop(512); $this->assertEquals(512, $img->width()); $this->assertEquals(512, $img->height()); @@ -190,12 +190,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(50, $img->width()); $this->assertEquals(20, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->crop(500, 700, 550, 300)); $this->assertEquals(550, $img->width()); $this->assertEquals(300, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->crop(10, 10, 15, 15)); $this->assertEquals(15, $img->width()); $this->assertEquals(15, $img->height()); @@ -207,12 +207,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(100, $img->width()); $this->assertEquals(100, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->fitIn(840, 840)); $this->assertEquals(840, $img->width()); $this->assertEquals(525, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->fitIn(200, 250)); $this->assertEquals(200, $img->width()); $this->assertEquals(200, $img->height()); -- GitLab From 20b688d4be7651b2e71fe4256101417d882fb3b1 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 20:16:50 +0200 Subject: [PATCH 070/164] Optimize image and skip mimetype test --- tests/data/testimage.png | Bin 5391 -> 3670 bytes tests/lib/image.php | 1 + 2 files changed, 1 insertion(+) diff --git a/tests/data/testimage.png b/tests/data/testimage.png index 6c4ba94911d9453ac22a4077d5b4cbe14fbaad2d..257598f04f5e8fd0dc795136c16fde2b6ec0c17e 100644 GIT binary patch delta 3653 zcmV-L4!ZG=D%Kp3BoYa5NLh0L01eOp01eOq5NtgMks%a+4faVyK~#9!?OkVg6h{^v zK6Cg3I%k7-SDS4duno5HVoZ(#ER%CGIf!I}2oi{#lfeWVL^L@^kuxk&AaV{OBSePU zzD1X|8BM6}uAbEIp7TEFsJo};)$OWRFO7#W=CLBbd%sk?CP|v4Ym%W!mL@rxFcL>4 zN7r?Ru6xXXLA=#@G&|{WnxtuxNfQxqlBv&4oN@wa4=togswTOl=!lnGeXa^AA%OOv zL`||uu~8?OvqZ}T&~7fEGl`TL-GVtRV2S|R4Fxq>O3I5F!CV%UB7pwp)8xk{2@1#% zfR_Cj-VOp1KsWeEQL!zFJ_(>7^~lmNAX`|F(*4 z+_Ia09XX!G&Rx91_8mILR<7I1ru?#y)oIb4z4uW$B0wyCnI`S}u$_DV%U->H&1CT4 zVGf(WWG(x;VnZT8G)qFg_WbR(ikGimv03w1u#dm_o(K?aGH}Ec_WJc3rUJL`++$Vi zwj%;WgZ%lE@@&zHjZ8J3KYzhG{Fp`rh;;dXZTWiU6tJQ+Y}1Pf5UDa?*ktB3a&mIn zH&vSu0YWMNELN4(Y}$pj?~%r;)M?B9^+iIyYbw@iEp6r7#p$yb*?S+BB?34pzyF{# zOCCIdUAT0Oy?OH{-%`9{?G{!p@rS(Ycke&KLWv(!MiT*?lA>kn@^gDI;2K=txNUEL z7HZ&R@b}Lv69Js?)@9$mD>Vr{Q^xRnw(UB=!htTy!-)W@W%-&6X^Z@$5{cYCc=_^W zSO~B_V;2!Xr8Mu@S6cZ8k7V+D+H@Vr!iA^Lp0U4vT9F8#N|vtPEUo;-D>w3ceww+E zg%db^U>xJ8&S5j>E@MN+OkXcjNcWS+rV>i}!IZ_wa4qd4SDZyoN1Ux{j|d*p{9=^*^pwT~hcs&YZg>{aG8f z>}G%atP&BxTa3;hxOJhZmYoN%Qq`LIRapO_lPpd6)oVAo9RXtv+mDQY0`BNv<}Kq+ zAc1NPI`IDoB8e|-+Pa7Rv2YoGB7jkTNE*PMKx3z*v!Z3{{NFw(T7^}v-Ig_NpUhpb zL&r|%#K8aRw(KsgbQopR)0gl>5#ut9&#K;_BWv9?l@n_6j0J4cjQMh5WEp09}i9*Om@bOeeA`H{EnV~M>&t#pFS?f zCq^c-2l;*=l9<4R`W@KB>GOPA@BVP=%mq$PtQtlFeNnC+&lj+QmYw<&0lZHGI8z6+ z2Y?2xdh&a2W&3v>!#c+ng6sZLqyouv%dwhk|vS=_t-kiUVD%U5r_le8h6FU2c1U?)$XclIs#zX zT(^0r?SKr7Fc@}l#*|EG%Abu;F^s=Z!N|dPFIB(ex$D8jBy!kjTVob}{Y?fNdA}M<4 zaeC=LmU&v4vXLKui06J;zCO1BA_X|&!BGVN19BUUK;Y~6$+NtMVbI8_tYPb(5#b_<}9`Kocj+Rab2PYGU5mT%N_<9mN0LC^|%J{b`^l74+9Ht z7VLmX2i(wqSjH0@cUJN|G`BEDD8otsc;2vI1p+#A;975M*eVbu#PiV6BU&I5MO6f& z0EEt+DqEK(0G3~wTt1x7WwL%`f$as)vl2rH7hup~%)icGuI!o6r*M6TlmIxcm`US? z@$>I56O?^%!Tf7CvZICo$S1&scQFZnNB}HjW_|d`x=}@d+$T?Y^bCIg zXoH;$qCh~dq)JCpKms6L$}DO$d>fwiWgwcx@snrxvyc!HZ9qC2#%?u(C=j~$ALTp& znsw-FD>#B>&@NC6if5rXGuqIiQ$Id-B$B8Gd|{+NGM|+b05NO3K-5b`K(m-xD8HG z!CKqoBY;ZJ6+)v(Y=|#XF<*Z_gp)XkS4&@>$j8+68k!y3lfOt3K%$l{ssYpWzu3r!m$!IL9{@02(eN_XvGHbRWfG; z=G0$ZVm<;KIDA6+Kv4{V00uIM&>pT_VoUy6sN0tT8aLx!kxLiJK*}1nEaU|`4bebr zoVMZwgQ%|zN&uPMcB@A^VPtS+{!+9?eUdgvBZg^bLTKi26d6MyhI{a1|>R!oZB`oRZe z$YP28Po+i?l_896N%Rbm?SX6u@R4BYM|zlbSjj)QiTg#e3KaW$dAz-V^p!XPmksYHV5j7alB+A&_QV24at$rUFqpx)J=B68F8dnZ~KYJrx z8H5j3(Ubv15?wyff6pw?Uamxy#(o=6cJDVbU_U{tK$S0yuR!J7ux-p%0|x^lqi`%4 z6L!s{>*J*m9Q5$5KAOt0%+%E>>vW~lCBYK`tbrwg;UeMu20p^6FqDJ0OVz&W~UoJxp5q!j;@X z;_rDCYPMooXDPM^J)FQc+RVJpJW@SR)j=K~`Zd$rl7l}N`& zJtT-ELv&OjV=i!i#Digo&qPDZq5<@+v_S+CI&db3MLc}`OdbTmQi(!FGp$j~vZ#n)(w{+zB%dBqn)3GE(01_eq2@!yV2tY!A1Rx;-kPrb#hyWx+01_eq z2@!yV2tYyvAdx3P4k^O5k^=%{ks@3xSs*|LDZ;gq0Rp6xB3vu!AV3l+!nKkF0>qOd zTr2S&#`sAfla%2)$;8|X0;G{bTqkKp0>o*OOG^scDFS$rAzlw9r|U^5C0UeS7Me6JUDp}9?lA}PR_F15 X7YMMt;_S>R00000NkvXXu0mjfQ!k!< literal 5391 zcmZu#Wmr_t+g_F~Q5vKL2?=TG5UE9wTvA$6$wiv|sl<{3F5R$n_fm_3w77IBAxft- zOT5Q#{}1nVt~qmEb7s!WIdebveb0kC_0+HalbZ z>TA#N$;aTe-NFWo>t_p8wfm!Taz{(zPNO4PQ10YGKJt`P-RW+dJRzIQX$S+JaT1;y z=A@0-{{t?NFctM!--W=&W#56U75o&wrfO{@0EQcOpL$x?IHSnA#}~`))H0rfvGnt8 z2FaxEc+-)%z)rpvkl=2%I-VRJ0^4jHO<<$jS~F88MhbM-BB&(nqMonUUL_KwIy*_? z7X(3qcv+V}23InaUS@$G0<(4s>Vy7T-)Q9@RiH>Bu76TT#k6`>VK1hVIRAEqU0~kL`9k|g?>LnYF5T8DL5bm3)@~e{&I!zjxU>!)tN$_vZA1gMFTj$? z&31pKyhtW>bO`ZCz;_8=Ob~MHtW=;kqQj+1=l->DaF8e~--W|DKzJ%3@H-HJEA7_Q zA!Mos%24vs%6Vak{=s`9O$z3`ii+n3-U5fDgKGVKJ{JjcKU%NvmKm8B5^~hnZa=CJ zw(cu~GFU3I>Xw|ImLechZ(KH+vM|TQa%VSRjt=-#K*mVFDt9y4Fj?05M!|`7l#C3E z%;9~DE+u7EyLt|Id9PElMuWqmM6aDbdRSXW+jjm3^2ZV7-K_4R_~K$B3(U(e;};Xi z@e2^q<%!o)3t|NyM*=S0skFWb*Ot{bG<^SUn|`8QgI5KFL~hb(h}nHi-eP_xXxA?d zxhO@Tmhp|aVZN~1hNeEv0zGGcTF(5$BFupQIx~)5DoeJ}icq!&IoEdD)6DQ<+O#Ae%@Ttb+lv3>Qcqhcdb!MD8OWE;IOX=%# zS5r0L|ITjnOHrusCgZ2U*Y8cQE{uF(u&5Y4ZedPD-p9vRY{ZF~k7x+;`23ou$*k|+ zPbGo(=G_p#F1=bALf7D%#0f42i172o4bOOZ{SL!;9aZN(CZLV1u9k`u`bNv39GnB9 zpgUkNLga^rTvT#2VS_GDP8dZ85cW7}AOG)x^RtpP1P6+)Gvz0vmKg5w@uT`|R~Oe% zY(%+LJ3XkTp+35EG~dTUmupC0`Z*Vp>SeaD?zWFXmKC4PApFvqt@c~&e!2o#J5;V$c-`L znc&sBgZYBwYOZx#;>A`I2fPJ+_BhYxCO0`V=B&wrB z>4cT|c_Iu6gjWd?QO{Vw?;E-qSxhS9{vQ9MrCu;(7rh=`qSl}}IvHfx~tN$?wm z?)7PWldB-&?D@GPEexBQTHknH&dair_nkq$UtV8Wrc^E(@Dm=WsD5^}6XmL7EHjG! zFEk_z=UWJ1rw!)*KBBKZBRKIeX<9*}z#7BW5_*f8^#&qyN69xysGaKLp%_h_soMP@ zi%S{5{9OAP)kPeRB$#=K(1TsrAGf^CZp6VsE^gnUxBJx4uyAteqT#~r$r(;k1?2Ia zXibMTW>_hLVVer1lW|SA2w-OYmp%p0v+qQ27EkQc7o@7p(U|B;G3 z67?bt#w=yy?>T+cMm0L0-dpl8*L@l@o?V^*(fr~yFi9PmM|LZ^#UyEFJSNR5S;Vfi zXQ}bMdY3MGuQMPyZsyPZj=|Bsx}g5Ii$U4QuLa0Vvrb#-va-!srnQkAp+`*1ldP|I z=l@i@v0AaRu*!<HA zl!i64yQuEHS=WJhc;tto-$t^>OcrIQ3`S{$*slpc z=bH}5Ngi@b6ucsQr^a<}={g9Z3c>8#?~Ra}rZF9Dqal`u=$--oqr(%bU+jg%UI&pL z*a{0Tgzn;^{3Ra;V=DU5z))Zz*6Gp0kX^VboX5wCQSNH>FD3idmV}GL=%6@*Ou!n~ zAis+ai#TJ8W9|cb=v6^+Mh5d}2nz{i!rFXX5O+!OM2pipwNh&4qt%1M2FZT#6W=$( z?x}U!{KI4U_MeTa-TJ31&Bbu0I>(9stsjC( zD{lNdnuSr-bS6kyd$@DsCj)E(dk0=qqr@EUrz=r>c2CljMP18l?FYk{;wZ87*#7^% z1Hja_Iq(7JDr$TnDPy6T~#um(JWXZP10bN>e19N(KNAIyQ85Vicp4>05BurC)#f}eMuC?DLeM}o^U15i| zjS_EQi+S*~0zF5!1@QYu*33+~4a#T}HPu>lUwis)M4`~6^so9PB&1cK(9GD>^xm($ z_h?ePLomGl0ZYsIVH}PjSsti*(5qtg9|!WKpX!s63^z9JmBPgltYZiy=T+q4T4}&JHd^9}@A;H=~Frc;g-ZwvH=Bd1R+ChOO?%$*?~P~_-qCM7#iCyQ)e#nIk-bs$#3*!Fhs(P=Fo?V7&vp0P{`zdwviy6okBkz_17XtT z4o1HR-RpRS(xs~=i)Ti9qZ*GX#9pR^t@a$%Y66BLEt64y>anyWmyG1|O}1bQ z+*&OEdRw$Acw?#ke(rNNtIG?F)?)SCRY>R`P8psm8&{*Lftm(^jZb8 z!U=7r2EY}4^p3(W?6B~ccUVbcqSj8YHU5-a{*;vk8H)wjhh`fG6xW6AzZqhHi-Cm; zBW3YDuO`F2k%iEfI|nm$mE~%|gd};-juM8f)bpD_j#-%Pg$5eH5Qud;) zX#`q>Uf%6#z><97veVSnT7B;4hin2}I5G1G(89&CR#m}|MaB5S^0&4G)5OzJ+gyfNyFEhs?5BQyXv7#IjM@=Lfvj;%>OpS?V> zD;j6H0>3*9Vj0QCC6LjtY4d=9fI%7UO^o3mcKBvjD88KwS|$*G7$@la4Tw~o+?J&C z4-WtEJkTFMJ2!9R$X7Kh6akE{a{J=VjAdx0%naqElbwQ%

(Mz?qx+kxRuJ{4+7A~qo?Ny+q17FuLw3I^Q2_npcTYI2j953{gR|aG z`P;LG+>kDXIxzJRpQ>0rk0VbFCcx|H9}|3&tYZ%mziEKcwYAMhlPb^U59i|t9_?m? zJ2*LsPr+nL6hv0re!IPNa;&pC3$_18quLJLp!I~fuo`khJnvCsCK{SR8`!K`8skjPI=4A+4yEImWgcd zfJvc6TSxJ?1aS5d4CIn*ha@d4vA}X#z*E>V7 zlaqNtsm)|o)|0PtR22?zNG0QxqiWdjtKVyD|4uu@1_YuK5|d0)wIU+o)^(0&|7kyh zQ!bn)W($3V^_`!^qldoS4jL8|tZs~V(aDmry>EF`@Qs|5LzF+fo$A`yV6!&L+1tl) zR)$fn*G98mlouI?CcLMm0d;4@wL^5GP0g95 zM=ZL6Y42LDi2>)mc*7cD0ABAGiWS%`LAU1Z$abo$&FM1AVTMtoi)+B8F8`i`m}X=? z4(){-giN1#)&2tevz*6<4@>hm{iQEf|3_+1Hq6lDMegS9B!>2+Kt$V2U0SjCQad<7 z%o@FE_Aogm`Qa|%StfT9Vpkdn-Coed%>6obENdvS?(~9s;eq`910PLon?Ru@ZxeJK z96MLkWg^l51|Va}2#M4c^O_zfJ0S%`mP!0Ir-oi282h8RZm9DHkY*j2m5S>;d6)U) z!bz$@`Hj#BVEqtY5L~D|%w(&^J>{zRU>vqEl%+Zaxb0Ev%fjV-H|aew=O0RR=GO-5 z2ae0FGC$C_Q2W4_SNIGwbOI34`%J9;2Z$pQGE$Vrj9+W8Y{z6u&ugEt9+WD--5yS1 zrON{pe}{GWdYRzC(~wdBmn#AOv;fFfHn4R@xq7kkgy@GT&bJcGOHC z@h!X5&Ghy0dT-2{)uZMbo898oWpX^J@8=F=#4R=Wt)A_hrdX!O0zYr%miq&sD1bHx zdj##zzonh|YE6@Sa6>8SI7DS*$8CF_*LCc(qrIK-Jce?smzVnphrGWti-UYdfBu3; z=GNRAf&kd1026C8V6cBid8JVK zjnV~?o|hPSmbfA8T6xRihAWSdA=xVdv!b9+8M= zdv8phJm$;MFBn&W-SBJOObLnp$=!2(AyyFUqGh!{OCG1=;6QOO}?ZtAhV zYNl(PZ%=t5VP6DM8Y9ySy&7RH{xaapX>!v>IwKQg_IC|e^haF}&;9XuG{A%ecqBmf z=Ko3G{O^OjOA?N!&JoOz2*xP-`TRa=Arc_f!vW6_h6kz2O`7f@@Tl@xT?N^G0m(2M z4rS*UW({Q^$>bTzviu3lCK+#d;RS;4Di>oPN=E1ebM@oQ2U-1N~De(m0~>=3zGk0ZRr+gun#bJdbr4@03T*5l0N-8t)b)vAH_9>`Rc% zl4^cvuJm5K$-*RDkeR``Se`yYCw;Kd|HEsz2sPn>b*a)XdrWuJdJ;x}zJ)he8xaij zU+!M0usyqrJVE>YZ;}wYL5@sPS!9d9no;O}+Eog5y`h@!OOf?pW4Z(6GeKImarkTestSkipped("When loading an image from anything, but a file, the imagetype is always png"); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); -- GitLab From 1b567b2ad1835d0c724309e68d3fad5dcc1b8bda Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 21:01:26 +0200 Subject: [PATCH 071/164] Don't throw a fatal, if is_file() parameter isn't a 'valid path', but only a data/base64-string. Related to #4283 --- lib/image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/image.php b/lib/image.php index c1b187608a6..4bc38e20e56 100644 --- a/lib/image.php +++ b/lib/image.php @@ -392,7 +392,7 @@ class OC_Image { */ public function loadFromFile($imagepath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte - if(!is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { + if(!@is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { // Debug output disabled because this method is tried before loadFromBase64? OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagepath, OC_Log::DEBUG); return false; -- GitLab From 9673a563b567ee6f580c157a901f038f38f0b5a2 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Thu, 1 Aug 2013 21:18:18 +0200 Subject: [PATCH 072/164] Create plural functions on the fly --- lib/l10n.php | 91 ++++++++++++++++++++++++++++++++++++++++++--- lib/l10n/string.php | 2 +- 2 files changed, 86 insertions(+), 7 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index d24717a23a2..208fa930c99 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -55,9 +55,14 @@ class OC_L10N{ private $translations = array(); /** - * Plural forms + * Plural forms (string) */ - private $plural_forms = ""; + private $plural_form_string; + + /** + * Plural forms (function) + */ + private $plural_form_function = null; /** * Localization @@ -144,7 +149,7 @@ class OC_L10N{ } } if(isset($PLURAL_FORMS)) { - $this->plural_forms = $PLURAL_FORMS; + $this->plural_form_string = $PLURAL_FORMS; } } @@ -161,6 +166,66 @@ class OC_L10N{ } } + /** + * @brief Creates a function that The constructor + * @param $app the app requesting l10n + * @param $lang default: null Language + * @returns OC_L10N-Object + * + * If language is not set, the constructor tries to find the right + * language. + * + * Parts of the code is copied from Habari: + * https://github.com/habari/system/blob/master/classes/locale.php + */ + protected function createPluralFormFunction($string){ + if(preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s*plural=(.*)$/u', $string, $matches)) { + // sanitize + $nplurals = preg_replace( '/[^0-9]/', '', $matches[1] ); + $plural = preg_replace( '#[^n0-9:\(\)\?\|\&=!<>+*/\%-]#', '', $matches[2] ); + + $body = str_replace( + array( 'plural', 'n', '$n$plurals', ), + array( '$plural', '$n', '$nplurals', ), + 'nplurals='. $nplurals . '; plural=' . $plural + ); + + // add parens + // important since PHP's ternary evaluates from left to right + $body .= ';'; + $res = ''; + $p = 0; + for($i = 0; $i < strlen($body); $i++) { + $ch = $body[$i]; + switch ( $ch ) { + case '?': + $res .= ' ? ('; + $p++; + break; + case ':': + $res .= ') : ('; + break; + case ';': + $res .= str_repeat( ')', $p ) . ';'; + $p = 0; + break; + default: + $res .= $ch; + } + } + + $body = $res . 'return ($plural>=$nplurals?$nplurals-1:$plural);'; + return create_function('$n', $body); + } + else { + // default: one plural form for all cases but n==1 (english) + return create_function( + '$n', + '$nplurals=2;$plural=($n==1?0:1);return ($plural>=$nplurals?$nplurals-1:$plural);' + ); + } + } + /** * @brief Translating * @param $text String The text we need a translation for @@ -239,14 +304,28 @@ class OC_L10N{ } /** - * @brief getPluralForms + * @brief getPluralFormString * @returns Fetches the gettext "Plural-Forms"-string * * Returns a string like "nplurals=2; plural=(n != 1);" */ - public function getPluralForms() { + public function getPluralFormString() { $this->init(); - return $this->plural_forms; + return $this->plural_form_string; + } + + /** + * @brief getPluralFormFunction + * @returns returns the plural form function + * + * returned function accepts the argument $n + */ + public function getPluralFormString() { + $this->init(); + if(is_null($this->plural_form_function)) { + $this->plural_form_function = createPluralFormFunction($this->plural_form_string); + } + return $this->plural_form_function; } /** diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 5b9dbaee8a2..8d83f1f61fb 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -23,7 +23,7 @@ class OC_L10N_String{ $text = $this->text; if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { - $id = $localizations["selectplural"]( $count ); + $id = $l10n->getPluralFormFunction()( $count ); $text = $translations[$this->text][$id]; } else{ -- GitLab From eee2c369d9b743634a062ad0c0b9f85496cecc87 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Thu, 1 Aug 2013 21:36:33 +0200 Subject: [PATCH 073/164] Fix copy and paste errors in l10n.php --- lib/l10n.php | 2 +- lib/l10n/string.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index 208fa930c99..ab2de5d9f19 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -320,7 +320,7 @@ class OC_L10N{ * * returned function accepts the argument $n */ - public function getPluralFormString() { + public function getPluralFormFunction() { $this->init(); if(is_null($this->plural_form_function)) { $this->plural_form_function = createPluralFormFunction($this->plural_form_string); diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 8d83f1f61fb..c72b744a7ec 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -23,7 +23,7 @@ class OC_L10N_String{ $text = $this->text; if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { - $id = $l10n->getPluralFormFunction()( $count ); + $id = $l10n->getPluralFormFunction()($count); $text = $translations[$this->text][$id]; } else{ -- GitLab From 2f17dcdba81193b48a1c843e58e8b116c6309714 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Thu, 1 Aug 2013 21:46:52 +0200 Subject: [PATCH 074/164] Fix syntax error. --- lib/l10n/string.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/l10n/string.php b/lib/l10n/string.php index c72b744a7ec..c78b06428d3 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -23,7 +23,8 @@ class OC_L10N_String{ $text = $this->text; if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { - $id = $l10n->getPluralFormFunction()($count); + $fn = $l10n->getPluralFormFunction(); + $id = $fn($count); $text = $translations[$this->text][$id]; } else{ -- GitLab From 3500c39567617655710a5790485558e3731dae50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 1 Aug 2013 22:49:43 +0200 Subject: [PATCH 075/164] adding new cli script to rescan files --- scanFiles.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 scanFiles.php diff --git a/scanFiles.php b/scanFiles.php new file mode 100644 index 00000000000..2144fce5d5a --- /dev/null +++ b/scanFiles.php @@ -0,0 +1,37 @@ +" . PHP_EOL; + echo " will rescan all files of the given user" . PHP_EOL; + echo " php scanFiles.php --all" . PHP_EOL; + echo " will rescan all files of all known users" . PHP_EOL; + return; +} + +function scanFiles($user) { + $scanner = new \OC\Files\Utils\Scanner($user); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->scan(''); +} + +if ($argv[1] === '--all') { + $users = OC_User::getUsers(); +} else { + $users = array($argv[1]); +} + +foreach ($users as $user) { + scanFiles($user); +} -- GitLab From 16726ab79380067a6083bc42d6c51e2214ec54a3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 2 Aug 2013 02:00:45 -0400 Subject: [PATCH 076/164] [tx-robot] updated from transifex --- apps/files/l10n/cs_CZ.php | 24 +++++++------- apps/files_sharing/l10n/cs_CZ.php | 6 ++++ apps/files_sharing/l10n/ru.php | 6 ++++ apps/files_trashbin/l10n/nl.php | 1 + apps/files_trashbin/l10n/ru.php | 1 + core/l10n/cs_CZ.php | 20 ++++++------ core/l10n/ru.php | 2 ++ l10n/af_ZA/files_encryption.po | 8 +++-- l10n/ar/files.po | 4 +-- l10n/ar/files_encryption.po | 8 +++-- l10n/be/files_encryption.po | 8 +++-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_encryption.po | 8 +++-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_encryption.po | 8 +++-- l10n/bs/files.po | 38 +++++++++++----------- l10n/bs/files_encryption.po | 8 +++-- l10n/ca/files.po | 4 +-- l10n/ca/files_encryption.po | 10 ++++-- l10n/cs_CZ/core.po | 27 +++++++-------- l10n/cs_CZ/files.po | 31 +++++++++--------- l10n/cs_CZ/files_encryption.po | 10 ++++-- l10n/cs_CZ/files_sharing.po | 18 +++++----- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 47 ++++++++++++++------------- l10n/cs_CZ/user_webdavauth.po | 6 ++-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_encryption.po | 8 +++-- l10n/da/files.po | 4 +-- l10n/da/files_encryption.po | 10 ++++-- l10n/de/files.po | 4 +-- l10n/de/files_encryption.po | 10 ++++-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_encryption.po | 10 ++++-- l10n/el/files.po | 4 +-- l10n/el/files_encryption.po | 8 +++-- l10n/en@pirate/files_encryption.po | 8 +++-- l10n/eo/files.po | 4 +-- l10n/eo/files_encryption.po | 8 +++-- l10n/es/files.po | 4 +-- l10n/es/files_encryption.po | 10 ++++-- l10n/es_AR/files.po | 4 +-- l10n/es_AR/files_encryption.po | 10 ++++-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_encryption.po | 10 ++++-- l10n/eu/files.po | 4 +-- l10n/eu/files_encryption.po | 10 ++++-- l10n/fa/files.po | 4 +-- l10n/fa/files_encryption.po | 10 ++++-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_encryption.po | 8 +++-- l10n/fr/files.po | 4 +-- l10n/fr/files_encryption.po | 10 ++++-- l10n/gl/files.po | 4 +-- l10n/gl/files_encryption.po | 10 ++++-- l10n/he/files.po | 4 +-- l10n/he/files_encryption.po | 8 +++-- l10n/hi/files_encryption.po | 8 +++-- l10n/hr/files.po | 4 +-- l10n/hr/files_encryption.po | 8 +++-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_encryption.po | 8 +++-- l10n/hy/files_encryption.po | 8 +++-- l10n/ia/files.po | 4 +-- l10n/ia/files_encryption.po | 8 +++-- l10n/id/files.po | 4 +-- l10n/id/files_encryption.po | 8 +++-- l10n/is/files.po | 4 +-- l10n/is/files_encryption.po | 8 +++-- l10n/it/files.po | 4 +-- l10n/it/files_encryption.po | 10 ++++-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_encryption.po | 10 ++++-- l10n/ka/files_encryption.po | 8 +++-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_encryption.po | 8 +++-- l10n/kn/files_encryption.po | 8 +++-- l10n/ko/files.po | 4 +-- l10n/ko/files_encryption.po | 10 ++++-- l10n/ku_IQ/files_encryption.po | 8 +++-- l10n/lb/files.po | 4 +-- l10n/lb/files_encryption.po | 8 +++-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_encryption.po | 8 +++-- l10n/lv/files.po | 4 +-- l10n/lv/files_encryption.po | 8 +++-- l10n/mk/files.po | 4 +-- l10n/mk/files_encryption.po | 8 +++-- l10n/ml_IN/files_encryption.po | 8 +++-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_encryption.po | 8 +++-- l10n/my_MM/files_encryption.po | 8 +++-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_encryption.po | 8 +++-- l10n/ne/files_encryption.po | 8 +++-- l10n/nl/files.po | 4 +-- l10n/nl/files_encryption.po | 10 ++++-- l10n/nl/files_trashbin.po | 9 ++--- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_encryption.po | 8 +++-- l10n/oc/files.po | 4 +-- l10n/oc/files_encryption.po | 8 +++-- l10n/pl/files.po | 4 +-- l10n/pl/files_encryption.po | 8 +++-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_encryption.po | 10 ++++-- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_encryption.po | 10 ++++-- l10n/ro/files.po | 4 +-- l10n/ro/files_encryption.po | 8 +++-- l10n/ru/core.po | 11 ++++--- l10n/ru/files.po | 4 +-- l10n/ru/files_encryption.po | 10 ++++-- l10n/ru/files_sharing.po | 19 ++++++----- l10n/ru/files_trashbin.po | 9 ++--- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_encryption.po | 8 +++-- l10n/sk/files_encryption.po | 8 +++-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_encryption.po | 8 +++-- l10n/sl/files.po | 4 +-- l10n/sl/files_encryption.po | 10 ++++-- l10n/sq/files.po | 4 +-- l10n/sq/files_encryption.po | 8 +++-- l10n/sr/files.po | 4 +-- l10n/sr/files_encryption.po | 8 +++-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_encryption.po | 8 +++-- l10n/sv/files.po | 4 +-- l10n/sv/files_encryption.po | 10 ++++-- l10n/sw_KE/files_encryption.po | 8 +++-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_encryption.po | 8 +++-- l10n/te/files.po | 38 +++++++++++----------- l10n/te/files_encryption.po | 8 +++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 6 +++- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_encryption.po | 8 +++-- l10n/tr/files.po | 4 +-- l10n/tr/files_encryption.po | 8 +++-- l10n/ug/files.po | 4 +-- l10n/ug/files_encryption.po | 8 +++-- l10n/uk/files.po | 4 +-- l10n/uk/files_encryption.po | 8 +++-- l10n/ur_PK/files_encryption.po | 8 +++-- l10n/vi/files.po | 4 +-- l10n/vi/files_encryption.po | 8 +++-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_encryption.po | 8 +++-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_encryption.po | 8 +++-- l10n/zh_HK/files_encryption.po | 8 +++-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_encryption.po | 10 ++++-- settings/l10n/cs_CZ.php | 40 +++++++++++------------ 166 files changed, 801 insertions(+), 470 deletions(-) diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 3f626d95647..e87872a4a09 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,12 +1,12 @@ "Nelze přesunout %s - existuje soubor se stejným názvem", +"Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Invalid Token" => "Neplatný token", -"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", +"No file was uploaded. Unknown error" => "Žádný soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", @@ -14,11 +14,11 @@ "Not enough storage available" => "Nedostatek dostupného úložného prostoru", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů", -"Not enough space available" => "Nedostatek dostupného místa", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů", +"Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"URL cannot be empty." => "URL nemůže být prázdná", +"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 být prázdná.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", "Error" => "Chyba", "Share" => "Sdílet", @@ -31,7 +31,7 @@ "suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", -"undo" => "zpět", +"undo" => "vrátit zpět", "perform delete operation" => "provést smazání", "1 file uploading" => "odesílá se 1 soubor", "files uploading" => "soubory se odesílají", @@ -40,15 +40,15 @@ "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", +"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", "1 folder" => "1 složka", -"{count} folders" => "{count} složky", +"{count} folders" => "{count} složek", "1 file" => "1 soubor", -"{count} files" => "{count} soubory", +"{count} files" => "{count} souborů", "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index cf041726abe..3eebb39e7e8 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", "Submit" => "Odeslat", +"Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", +"Reasons might be:" => "Možné důvody:", +"the item was removed" => "položka byla odebrána", +"the link expired" => "odkazu vypršela platnost", +"sharing is disabled" => "sdílení je zakázané", +"For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", "%s shared the folder %s with you" => "%s s Vámi sdílí složku %s", "%s shared the file %s with you" => "%s s Vámi sdílí soubor %s", "Download" => "Stáhnout", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 77332c183f6..601518e705d 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", "Submit" => "Отправить", +"Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", +"Reasons might be:" => "Причиной может быть:", +"the item was removed" => "объект был удалён", +"the link expired" => "срок ссылки истёк", +"sharing is disabled" => "обмен отключен", +"For more info, please ask the person who sent this link." => "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку.", "%s shared the folder %s with you" => "%s открыл доступ к папке %s для Вас", "%s shared the file %s with you" => "%s открыл доступ к файлу %s для Вас", "Download" => "Скачать", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 91844a14b66..a0a55eced85 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mappen", "1 file" => "1 bestand", "{count} files" => "{count} bestanden", +"restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", "Restore" => "Herstellen", "Delete" => "Verwijder", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 0d55703cdc0..f77d82c7100 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлов", +"restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Restore" => "Восстановить", "Delete" => "Удалить", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 0a444156026..1f7d4370d28 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -50,7 +50,7 @@ "The object type is not specified." => "Není určen typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", -"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován.", +"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován!", "Shared" => "Sdílené", "Share" => "Sdílet", "Error while sharing" => "Chyba při sdílení", @@ -88,11 +88,11 @@ "ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "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 ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce.", -"Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", -"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", +"Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", +"You will receive a link to reset your password via Email." => "E-mailem Vám bude zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", -"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", -"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit své heslo", +"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", +"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit mé heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", "To login page" => "Na stránku přihlášení", @@ -105,7 +105,7 @@ "Help" => "Nápověda", "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", @@ -114,7 +114,7 @@ "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje.", -"For information how to properly configure your server, please see the documentation." => "Pro informace jak správně nastavit váš server se podívejte do dokumentace.", +"For information how to properly configure your server, please see the documentation." => "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace.", "Create an admin account" => "Vytvořit účet správce", "Advanced" => "Pokročilé", "Data folder" => "Složka s daty", @@ -128,14 +128,14 @@ "Finish setup" => "Dokončit nastavení", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", -"Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", -"If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", +"Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", +"If you did not change your password recently, your account may be compromised!" => "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", -"Hey there,

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

Cheers!" => "Ahoj,

jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky", +"Hey there,

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

Cheers!" => "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky", "prev" => "předchozí", "next" => "následující", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 27af45212d2..f9c293de9b8 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -110,9 +110,11 @@ "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Отсутствует защищенный генератор случайных чисел, пожалуйста, включите расширение PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора случайных чисел злоумышленник может предугадать токены сброса пароля и завладеть Вашей учетной записью.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает.", +"For information how to properly configure your server, please see the documentation." => "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию.", "Create an admin account" => "Создать учётную запись администратора", "Advanced" => "Дополнительно", "Data folder" => "Директория с данными", diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 920cb218987..fef8a84bfe4 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2c0edd0e620..d9758262cff 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index b364ef0b1af..874f4ded563 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "جاري الحفظ..." diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index 3fc7cf19381..8d0154992e9 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index c5b052986f1..6789bd0d8ab 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 6fda53b831b..211d08a65e6 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Записване..." diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index c651dce787b..b6af75f4312 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 6b42829178e..76ebb7103c5 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 8dc6dc0de23..40526578de4 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+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" @@ -120,7 +120,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "Fasikla" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 15de964f5c6..f0ae33236a4 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Spašavam..." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 8bb421127f6..b4cb4f1bc4a 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 7e7d5f535ea..89a390134fc 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 15:50+0000\n" -"Last-Translator: Josep Tomàs \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Desant..." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 395269681d3..258670029d0 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 18:00+0000\n" +"Last-Translator: pstast \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" @@ -238,7 +239,7 @@ msgstr "Není určen název aplikace." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován." +msgstr "Požadovaný soubor {file} není nainstalován!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -396,11 +397,11 @@ msgstr "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pok #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" +msgstr "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." +msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 @@ -413,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Ano, opravdu si nyní přeji obnovit své heslo" +msgstr "Ano, opravdu si nyní přeji obnovit mé heslo" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -476,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" +msgstr "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -523,7 +524,7 @@ msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože so msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pro informace jak správně nastavit váš server se podívejte do dokumentace." +msgstr "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace." #: templates/installation.php:47 msgid "Create an admin account" @@ -582,13 +583,13 @@ msgstr "Odhlásit se" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatické přihlášení odmítnuto." +msgstr "Automatické přihlášení odmítnuto!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." +msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!" #: templates/login.php:12 msgid "Please change your password to secure your account again." @@ -615,7 +616,7 @@ msgstr "Alternativní přihlášení" msgid "" "Hey there,

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

Cheers!" -msgstr "Ahoj,

jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" +msgstr "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 36b9af89c6a..f692cb6aab5 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"Last-Translator: pstast \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" @@ -22,7 +23,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" +msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -39,7 +40,7 @@ msgstr "Neplatný token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" -msgstr "Soubor nebyl odeslán. Neznámá chyba" +msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" #: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" @@ -54,7 +55,7 @@ msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v p msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" #: ajax/upload.php:70 msgid "The uploaded file was only partially uploaded" @@ -86,11 +87,11 @@ msgstr "Soubory" #: js/file-upload.js:11 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů" +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů" #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "Nedostatek dostupného místa" +msgstr "Nedostatek volného místa" #: js/file-upload.js:64 msgid "Upload cancelled." @@ -99,11 +100,11 @@ msgstr "Odesílání zrušeno." #: js/file-upload.js:167 js/files.js:266 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." +msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." #: js/file-upload.js:233 js/files.js:339 msgid "URL cannot be empty." -msgstr "URL nemůže být prázdná" +msgstr "URL nemůže být prázdná." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" @@ -156,7 +157,7 @@ msgstr "nahrazeno {new_name} s {old_name}" #: js/filelist.js:350 msgid "undo" -msgstr "zpět" +msgstr "vrátit zpět" #: js/filelist.js:375 msgid "perform delete operation" @@ -196,11 +197,11 @@ msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" 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." +msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" +msgstr "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud" #: js/files.js:744 templates/index.php:67 msgid "Name" @@ -220,7 +221,7 @@ msgstr "1 složka" #: js/files.js:765 msgid "{count} folders" -msgstr "{count} složky" +msgstr "{count} složek" #: js/files.js:773 msgid "1 file" @@ -228,7 +229,7 @@ msgstr "1 soubor" #: js/files.js:775 msgid "{count} files" -msgstr "{count} soubory" +msgstr "{count} souborů" #: lib/app.php:73 #, php-format diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index f2c52d1e49d..22f7b62bf9b 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 18:40+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Ukládám..." diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 89b4d45ab89..4e1ae51035f 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:30+0000\n" +"Last-Translator: pstast \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" @@ -32,27 +32,27 @@ msgstr "Odeslat" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Je nám líto, ale tento odkaz již není funkční." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Možné důvody:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "položka byla odebrána" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "odkazu vypršela platnost" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "sdílení je zakázané" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." #: templates/public.php:15 #, php-format diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index c6dfd407a5c..54d822655f8 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:10+0000\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:20+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 602c1e4dd81..3a5a4622653 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 19:40+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index fbc9ea3099e..7fb0e844a29 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:10+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 20:00+0000\n" +"Last-Translator: pstast \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" @@ -26,7 +27,7 @@ msgstr "Nelze načíst seznam z App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Chyba ověření" +msgstr "Chyba přihlášení" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -84,7 +85,7 @@ msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nelze odstranit uživatele ze skupiny %s" +msgstr "Nelze odebrat uživatele ze skupiny %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -132,7 +133,7 @@ msgstr "smazáno" #: js/users.js:47 msgid "undo" -msgstr "zpět" +msgstr "vrátit zpět" #: js/users.js:79 msgid "Unable to remove user" @@ -182,7 +183,7 @@ msgid "" "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 "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem." +msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." #: templates/admin.php:29 msgid "Setup Warning" @@ -192,7 +193,7 @@ msgstr "Upozornění nastavení" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční." #: templates/admin.php:33 #, php-format @@ -207,11 +208,11 @@ msgstr "Schází modul 'fileinfo'" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." +msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale nefunguje" +msgstr "Lokalizace nefunguje" #: templates/admin.php:63 #, php-format @@ -219,11 +220,11 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému." +msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Spojení s internetem nefujguje" +msgstr "Připojení k internetu nefunguje" #: templates/admin.php:78 msgid "" @@ -232,7 +233,7 @@ msgid "" "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 "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." +msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." #: templates/admin.php:92 msgid "Cron" @@ -240,17 +241,17 @@ msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Spustit jednu úlohu s každou načtenou stránkou" +msgstr "Spustit jednu úlohu s každým načtením stránky" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http." +msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu." +msgstr "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu." #: templates/admin.php:128 msgid "Sharing" @@ -270,16 +271,16 @@ msgstr "Povolit odkazy" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" +msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "Povolit veřejné soubory" +msgstr "Povolit veřejné nahrávání souborů" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "Povolit uživatelům umožnit ostatním nahrávat do jejich veřejně sdílené složky" +msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" #: templates/admin.php:160 msgid "Allow resharing" @@ -323,7 +324,7 @@ msgstr "Záznam" #: templates/admin.php:212 msgid "Log level" -msgstr "Úroveň záznamu" +msgstr "Úroveň zaznamenávání" #: templates/admin.php:243 msgid "More" @@ -349,7 +350,7 @@ msgstr "Vyvinuto komun #: templates/apps.php:13 msgid "Add your App" -msgstr "Přidat Vaší aplikaci" +msgstr "Přidat Vaši aplikaci" #: templates/apps.php:28 msgid "More Apps" @@ -418,7 +419,7 @@ msgstr "Vaše heslo bylo změněno" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "Vaše heslo nelze změnit" +msgstr "Změna vašeho hesla se nezdařila" #: templates/personal.php:42 msgid "Current password" @@ -446,7 +447,7 @@ msgstr "Vaše e-mailová adresa" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" +msgstr "Pro povolení obnovy hesla vyplňte e-mailovou adresu" #: templates/personal.php:85 templates/personal.php:86 msgid "Language" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 74eaf816df8..27661055ff6 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:21+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 19:28+0000\n" +"Last-Translator: pstast \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" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 13f8ec20f67..1254ad5c412 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 580563b10a4..1883952f1c0 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Yn cadw..." diff --git a/l10n/da/files.po b/l10n/da/files.po index 957c1b41186..2c33ac99d71 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 984b44645ad..f9c1880e0e0 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 16:20+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Sikker dig venligst at PHP 5.3.3 eller nyere er installeret og at OpenSSL PHP udvidelsen er aktiveret og konfigureret korrekt. Indtil videre er krypterings app'en deaktiveret. " +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gemmer..." diff --git a/l10n/de/files.po b/l10n/de/files.po index f4ddfb57c14..03ee7749156 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index aa7ff7b7d98..96854973d22 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 12:50+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,6 +77,10 @@ msgid "" "app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index bf0b8666ab6..2e308e619bf 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index ca88a9a2398..0a059904d4c 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 09:20+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/el/files.po b/l10n/el/files.po index c1b8a30a179..483392c611c 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 684d9d810ea..48205a8c2e8 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index c0cec032f05..90fdf44019a 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 3d476702c3a..335b02a961a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index c5864c36b14..ab2a604eb07 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Konservante..." diff --git a/l10n/es/files.po b/l10n/es/files.po index 66676ffbc8e..4a039576404 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index fbcbc4e2fe1..19f75204698 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 07:50+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -79,6 +79,10 @@ msgid "" "app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0353e620770..a27e177c486 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 68fee9017fd..b44892489e0 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 12:20+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index f516fc66a07..cac6450a0f9 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index b5851a1bb9d..048a22c0203 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 09:30+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvestamine..." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index beb0bcad9f0..e62535539f6 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 4eb3080f3fe..cde99dedab2 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:50+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Ziurtatu PHP 5.3.3 edo berriagoa instalatuta dagoela eta PHPren OpenSSL gehigarria gaituta eta ongi konfiguratuta dagoela. Oraingoz enkriptazio programa ez dago gaituta." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gordetzen..." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c8525694852..78eab8b1751 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 1693b267f75..ac77efb7663 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 09:30+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "در حال ذخیره سازی..." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 72d5809a58e..c6e4b9ee9d8 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 0f8f958a2d0..732087d4ef5 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Tallennetaan..." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c4babaecdd9..d90f42f46c7 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 0a8751ee9ce..379e785e9e1 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 18:30+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -76,6 +76,10 @@ msgid "" "app has been disabled." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Enregistrement..." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 79c63c38697..012454459c1 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index a8f83b07bb4..92948d143c7 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 09:11+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gardando..." diff --git a/l10n/he/files.po b/l10n/he/files.po index 83a9b3df429..24c1a5d53c1 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 8b805ef221a..c7d690a7876 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "שמירה…" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94ad25dcd1a..cea31a0a3eb 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d14de3d50eb..b86b527c732 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 41ffd91c1b8..348a47b40d2 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Spremanje..." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 2fa09f0b3cc..35dad9d514e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index cac07fdabb5..4454bdef40c 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Mentés..." diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index aac4b4707b6..ad6527023c2 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 9573d287a0a..9e70cb518ac 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 3dc0de99506..e4f044f7d2d 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 6403ada6b74..d67cff2dde5 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 754fd8ebf9a..e65b75b2cac 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Menyimpan..." diff --git a/l10n/is/files.po b/l10n/is/files.po index 86b12e0fd21..57067a3de70 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 4cc867c7a62..441753b069d 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Er að vista ..." diff --git a/l10n/it/files.po b/l10n/it/files.po index 2c86ca8c3c1..5df5b08ecf6 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 9e43d8c52dd..a97ce2655be 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 13:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 99861df793d..cbafdbe58ff 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 1697707c7fe..abf03aaf897 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 01:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 30ae56a19d1..c2da2724657 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 918d7d6d172..313e5241c32 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 39799227c61..2b1948e6609 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "შენახვა..." diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index 227f1e73e33..e02a0220c2c 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 634e6e3dc27..8c03bf34b9c 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 70a042b639c..848bb1530ca 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 09:20+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "저장 중..." diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 0adc093d2f9..7cfa02f06a3 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 1c581ddf78a..48678354f4d 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index cecd9c33434..d845e6353de 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speicheren..." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 6396841d213..2690fe2d978 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index a17364ca8ec..22f3b98d907 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Saugoma..." diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b1698a93e05..0a7605a3f01 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index f75bfcbdf54..db6b8fd1426 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Saglabā..." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 33f61785d3f..c2b25dd28dc 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 377a5a10467..e7309b2e087 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Снимам..." diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index 788f7259d4f..e97dc7732ae 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 1cad5bda691..38aeb8e210d 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 80ba103e3db..0508639aeae 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Simpan..." diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 3465eb2405e..ee3d3592630 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e5b14ff8f89..9890ffba4c2 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 0daabad1ea7..063a792c558 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Lagrer..." diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 53e5a46e007..268adc60bd5 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 02a39f9a880..d611330ffcc 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index e0fd1bf827b..d76778bb108 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Opslaan" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5c01a77ff91..bea50408d88 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 13:40+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" @@ -69,7 +70,7 @@ msgstr "{count} bestanden" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "hersteld" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1508b5b0a51..d36ccd21150 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index c8ba72ef42d..467bce62761 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Lagrar …" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 950eb920b53..46d00b80437 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index a9474224b7b..6d4d0593d97 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Enregistra..." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 4b137554e6f..f256b1fec36 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 8342d627db9..6a5f9f21dcf 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Zapisywanie..." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 90375a93ab9..cb38b400e0d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 907be4d30a2..486433e9b14 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:10+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvando..." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f9a45e1db27..3a0d7a3dfe9 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 375dee2ebe9..7ab5107cbf8 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 10:10+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "A guardar..." diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 766d472d733..6837c350aea 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index d499ad94c54..db393386ef1 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Se salvează..." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 12a8bcb2a5a..bb252af7226 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,14 +8,15 @@ # foool , 2013 # Victor Bravo <>, 2013 # Vyacheslav Muranov , 2013 +# Den4md , 2013 # Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 17:50+0000\n" +"Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -502,7 +503,7 @@ msgstr "Ваша версия PHP уязвима к атаке NULL Byte (CVE-20 #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s." #: templates/installation.php:32 msgid "" @@ -527,7 +528,7 @@ msgstr "Ваша папка с данными и файлы возможно д msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index dbb38a0716f..f47de17a517 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index d206ebc8120..a7b8d2431fe 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 10:40+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,6 +77,10 @@ msgid "" "app has been disabled." msgstr "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Сохранение..." diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 2c518ea20c6..16ded2bfe6d 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Victor Bravo <>, 2013 +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 17:40+0000\n" +"Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Отправить" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "К сожалению, эта ссылка, похоже не будет работать больше." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Причиной может быть:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "объект был удалён" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "срок ссылки истёк" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "обмен отключен" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." #: templates/public.php:15 #, php-format diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 20136ac7c13..7dbe2f005c3 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:00+0000\n" +"Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} файлов" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "восстановлен" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 8271038a665..934b1e022fd 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index fee22ab5377..e44e8bf1218 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index f4a23c5980a..534e069a0aa 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 864a10d1d2c..9cb1d0c6394 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index f32ee0daedd..18ec2cbea2a 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Ukladám..." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 728a20867e0..0983be14b85 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index b9ee63d4082..ebfcc9ce530 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 08:10+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Poteka shranjevanje ..." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 5b7dc623375..4937d145aa9 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 1642b96a824..3aeb9523477 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 49bcc636444..741113a8e75 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 081f03f53f6..04ed7d5cf20 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Чување у току..." diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 7905ba199a9..3cd21eb3efe 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index a85e29f4eb3..9fb01330ab9 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b689f93909b..370cb2dd676 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index cfb13426d40..5edf9c93bab 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 14:20+0000\n" -"Last-Translator: Stefan Gagner \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -76,6 +76,10 @@ msgid "" "app has been disabled." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Sparar..." diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 50c13bf25ed..2e880b9ae9f 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 6dc52aac126..a98cdc44aad 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index fc2389171d9..85a61d043e7 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." diff --git a/l10n/te/files.po b/l10n/te/files.po index c2af073ef38..ef08c1f10d3 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "తొలగించు" @@ -128,7 +128,7 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "సంచయం" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 20a34b874a4..8dbcbdbcb75 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a17c2034930..38f45d3131e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-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.pot b/l10n/templates/files.pot index 385fca6c688..b1d3cd06b8f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:55-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_encryption.pot b/l10n/templates/files_encryption.pot index 1ae308d9e92..84373684018 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,6 +71,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2b215ef21c7..b02077817c9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 4da92b8c635..659a2efda8e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 917bb632910..e5715a17101 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 fabfff67cf4..60a03da00ba 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 71ad60bd0f7..90919c9cfd9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-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 eafa3a8fa50..440917eb07e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-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 2145532de88..7b20dd62de8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 20e34edb44f..9ef6b6c05cc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-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 5b14df39412..3107408129d 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index ad469023b19..5408793a7ce 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 4684d344ee4..a6f545c65ef 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 5948a3dedb3..b14691c6099 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Kaydediliyor..." diff --git a/l10n/ug/files.po b/l10n/ug/files.po index d312f8baddb..5b7a57f3fe6 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index 896e7bb4786..aae8deada3b 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 0928802b6a0..5f9e6441d61 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 4899683a178..ec9f68aed19 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Зберігаю..." diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index b082d1236b9..52723eb59e0 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 990c1c729a5..ca43703fa14 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index d075fbbae3b..ed0dda91042 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Đang lưu..." diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 0110f62f0f7..bbcfe2019cd 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index ea02882e9b7..7fab6e1ae73 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index c43db5b90cb..02d055c5c5b 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 08588336e19..61e263ad2a5 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7a7dd9fef9c..7cba2f446ad 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index d50a170ed91..ad4babbbca4 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 9f2eb99c361..d3b22dc0e59 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 12:40+0000\n" -"Last-Translator: Flymok \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "請確認已安裝 PHP 5.3.3 或更新的版本並啟用 OpenSSL PHP 且正確設定。目前 encryption app 不可使用。" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "儲存中..." diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index c962c6a1795..350a77a09f0 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,6 +1,6 @@ "Nelze načíst seznam z App Store", -"Authentication error" => "Chyba ověření", +"Authentication error" => "Chyba přihlášení", "Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.", "Unable to change display name" => "Nelze změnit zobrazované jméno", "Group already exists" => "Skupina již existuje", @@ -14,7 +14,7 @@ "Invalid request" => "Neplatný požadavek", "Admins can't remove themself from the admin group" => "Správci se nemohou odebrat sami ze skupiny správců", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", -"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", +"Unable to remove user from group %s" => "Nelze odebrat uživatele ze skupiny %s", "Couldn't update app." => "Nelze aktualizovat aplikaci.", "Update to {appversion}" => "Aktualizovat na {appversion}", "Disable" => "Zakázat", @@ -26,7 +26,7 @@ "Updated" => "Aktualizováno", "Saving..." => "Ukládám...", "deleted" => "smazáno", -"undo" => "zpět", +"undo" => "vrátit zpět", "Unable to remove user" => "Nelze odebrat uživatele", "Groups" => "Skupiny", "Group Admin" => "Správa skupiny", @@ -37,27 +37,27 @@ "A valid password must be provided" => "Musíte zadat platné heslo", "__language_name__" => "Česky", "Security Warning" => "Bezpečnostní upozornění", -"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem.", +"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", -"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, protože rozhraní WebDAV je rozbité.", +"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, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", -"Locale not working" => "Locale nefunguje", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému.", -"Internet connection not working" => "Spojení s internetem nefujguje", -"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." => "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", +"Locale not working" => "Lokalizace nefunguje", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.", +"Internet connection not working" => "Připojení k internetu nefunguje", +"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." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http.", -"Use systems cron service to call the cron.php file once a minute." => "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP.", +"Use systems cron service to call the cron.php file once a minute." => "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", -"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", -"Allow public uploads" => "Povolit veřejné soubory", -"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům umožnit ostatním nahrávat do jejich veřejně sdílené složky", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky veřejně pomocí odkazů", +"Allow public uploads" => "Povolit veřejné nahrávání souborů", +"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky", "Allow resharing" => "Povolit znovu-sdílení", "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", @@ -67,12 +67,12 @@ "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", "Log" => "Záznam", -"Log level" => "Úroveň záznamu", +"Log level" => "Úroveň zaznamenávání", "More" => "Více", "Less" => "Méně", "Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", -"Add your App" => "Přidat Vaší aplikaci", +"Add your App" => "Přidat Vaši aplikaci", "More Apps" => "Více aplikací", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", @@ -89,14 +89,14 @@ "You have used %s of the available %s" => "Používáte %s z %s dostupných", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo nelze změnit", +"Unable to change your password" => "Změna vašeho hesla se nezdařila", "Current password" => "Současné heslo", "New password" => "Nové heslo", "Change password" => "Změnit heslo", "Display Name" => "Zobrazované jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", +"Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", -- GitLab From 79351d064f5471862c652f61eef1f221ad6cb59f Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 09:41:31 +0200 Subject: [PATCH 077/164] Make default language configurable via config.php --- config/config.sample.php | 5 ++++- lib/l10n.php | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 8d978ea6ee7..bcf8ebdedb0 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,6 +56,9 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", +/* Optional ownCLoud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +"default_language" => "en", + /* Path to the parent directory of the 3rdparty directory */ "3rdpartyroot" => "", @@ -154,7 +157,7 @@ $CONFIG = array( /* Enable/disable X-Frame-Restriction */ /* HIGH SECURITY RISK IF DISABLED*/ "xframe_restriction" => true, - + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ diff --git a/lib/l10n.php b/lib/l10n.php index d35ce5fed14..a28aa89c5f1 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -298,6 +298,12 @@ class OC_L10N{ } } + $default_language = OC_Config::getValue('default_language', false); + + if($default_language !== false) { + return $default_language; + } + if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $accepted_languages = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); if(is_array($app)) { -- GitLab From 504beb6cfd95543c4826f00df4f27730e3655314 Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 10:01:34 +0200 Subject: [PATCH 078/164] Fix typo (again >.<).. gnah --- config/config.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index bcf8ebdedb0..32d748cf4be 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,7 +56,7 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", -/* Optional ownCLoud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ "default_language" => "en", /* Path to the parent directory of the 3rdparty directory */ -- GitLab From ad329f541bc3acf923ee06c9547669b464268679 Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 11:19:33 +0200 Subject: [PATCH 079/164] users's -> user's --- config/config.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 32d748cf4be..c6d7fa0d05b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,7 +56,7 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", -/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the user's language preference configured under "personal -> language" once they have logged in */ "default_language" => "en", /* Path to the parent directory of the 3rdparty directory */ -- GitLab From b12c1cb32521f643bcb3e2c4238fa2b9cf0fda55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 1 Aug 2013 14:38:06 +0200 Subject: [PATCH 080/164] add OC.Breadcrumb.show(dir, filename, link) --- core/js/js.js | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index a92d41f236f..17a24dd4bc5 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -370,6 +370,68 @@ OC.Notification={ OC.Breadcrumb={ container:null, crumbs:[], + show:function(dir, filename, link){ + OC.Breadcrumb.clear(); + var path = dir.split('/'); + + //add home + var link = OC.linkTo('files','index.php'); + + var crumb=$('

'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + + var crumbImg=$(''); + crumbImg.attr('src',OC.imagePath('core','places/home')); + crumbLink.append(crumbImg); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + + //add path parts + var pathurl = ''; + jQuery.each(path, function(i,name) { + if (name !== '') { + pathurl = pathurl+'/'+name; + var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); + + var crumb=$('
'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + crumbLink.text(name); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + } + }); + + //add filename (optional) + if (filename && link) { + pathurl = pathurl+'/'+filename; + + var crumb=$('
'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + crumbLink.text(filename); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + } + + // update crumb array + var lastCrumb = OC.Breadcrumb.crumbs.pop(); + lastCrumb = jQuery(lastCrumb).addClass('last'); + OC.Breadcrumb.crumbs.push(lastCrumb); + var crumbs = OC.Breadcrumb.crumbs; + crumbs.reverse(); + jQuery.each(crumbs, function(i,crumb){ + OC.Breadcrumb.container.prepend(crumb); + }); + + }, push:function(name, link){ if(!OC.Breadcrumb.container){//default OC.Breadcrumb.container=$('#controls'); -- GitLab From f8bb4e10ae5378122328f8e105494fd7af3db260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 2 Aug 2013 11:44:53 +0200 Subject: [PATCH 081/164] use fixed OC.Breadcrumb.push() --- core/js/js.js | 88 +++++++++++++++++++-------------------------------- 1 file changed, 32 insertions(+), 56 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 17a24dd4bc5..03f660be62c 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -370,67 +370,43 @@ OC.Notification={ OC.Breadcrumb={ container:null, crumbs:[], - show:function(dir, filename, link){ + show:function(dir, leafname, leaflink){ OC.Breadcrumb.clear(); - var path = dir.split('/'); - //add home - var link = OC.linkTo('files','index.php'); - - var crumb=$('
'); - crumb.addClass('crumb'); + // show home + path in subdirectories + if (dir && dir !== '/') { + //add home + var link = OC.linkTo('files','index.php'); - var crumbLink=$(''); - crumbLink.attr('href',link); - - var crumbImg=$(''); - crumbImg.attr('src',OC.imagePath('core','places/home')); - crumbLink.append(crumbImg); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); - - //add path parts - var pathurl = ''; - jQuery.each(path, function(i,name) { - if (name !== '') { - pathurl = pathurl+'/'+name; - var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); - - var crumb=$('
'); - crumb.addClass('crumb'); - - var crumbLink=$(''); - crumbLink.attr('href',link); - crumbLink.text(name); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); - } - }); - - //add filename (optional) - if (filename && link) { - pathurl = pathurl+'/'+filename; - - var crumb=$('
'); - crumb.addClass('crumb'); - - var crumbLink=$(''); - crumbLink.attr('href',link); - crumbLink.text(filename); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); - } - - // update crumb array - var lastCrumb = OC.Breadcrumb.crumbs.pop(); - lastCrumb = jQuery(lastCrumb).addClass('last'); - OC.Breadcrumb.crumbs.push(lastCrumb); - var crumbs = OC.Breadcrumb.crumbs; - crumbs.reverse(); - jQuery.each(crumbs, function(i,crumb){ + var crumb=$('
'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + + var crumbImg=$(''); + crumbImg.attr('src',OC.imagePath('core','places/home')); + crumbLink.append(crumbImg); + crumb.append(crumbLink); OC.Breadcrumb.container.prepend(crumb); - }); + OC.Breadcrumb.crumbs.push(crumb); + + //add path parts + var segments = dir.split('/'); + var pathurl = ''; + jQuery.each(segments, function(i,name) { + if (name !== '') { + pathurl = pathurl+'/'+name; + var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); + OC.Breadcrumb.push(name, link); + } + }); + } + //add leafname + if (leafname && leaflink) { + OC.Breadcrumb.push(leafname, leaflink); + } }, push:function(name, link){ if(!OC.Breadcrumb.container){//default -- GitLab From 943288542804996687d41c548acf25800d270a49 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 29 Jul 2013 17:46:20 +0200 Subject: [PATCH 082/164] Change OC_DB_Schema to use DI for db connection object --- lib/db.php | 19 +++++++---- lib/db/schema.php | 87 +++++++++++++++++++++++------------------------ 2 files changed, 55 insertions(+), 51 deletions(-) diff --git a/lib/db.php b/lib/db.php index dd48c329490..a618e8ebb94 100644 --- a/lib/db.php +++ b/lib/db.php @@ -397,7 +397,8 @@ class OC_DB { */ public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { self::connectDoctrine(); - return OC_DB_Schema::getDbStructure(self::$DOCTRINE, $file); + $schema = new \OC\DB\Schema(self::$connection); + return $schema->getDbStructure($file); } /** @@ -409,7 +410,9 @@ class OC_DB { */ public static function createDbFromStructure( $file ) { self::connectDoctrine(); - return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file); + $schema = new \OC\DB\Schema(self::$connection); + $result = $schema->createDbFromStructure($file); + return $result; } /** @@ -420,8 +423,9 @@ class OC_DB { */ public static function updateDbFromStructure($file) { self::connectDoctrine(); + $schema = new \OC\DB\Schema(self::$connection); try { - $result = OC_DB_Schema::updateDbFromStructure(self::$DOCTRINE, $file); + $result = $schema->updateDbFromStructure($file); } catch (Exception $e) { OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); throw $e; @@ -601,7 +605,8 @@ class OC_DB { */ public static function dropTable($tableName) { self::connectDoctrine(); - OC_DB_Schema::dropTable(self::$DOCTRINE, $tableName); + $schema = new \OC\DB\Schema(self::$connection); + $schema->dropTable($tableName); } /** @@ -610,7 +615,8 @@ class OC_DB { */ public static function removeDBStructure($file) { self::connectDoctrine(); - OC_DB_Schema::removeDBStructure(self::$DOCTRINE, $file); + $schema = new \OC\DB\Schema(self::$connection); + $schema->removeDBStructure($file); } /** @@ -619,7 +625,8 @@ class OC_DB { */ public static function replaceDB( $file ) { self::connectDoctrine(); - OC_DB_Schema::replaceDB(self::$DOCTRINE, $file); + $schema = new \OC\DB\Schema(self::$connection); + $schema->replaceDB($file); } /** diff --git a/lib/db/schema.php b/lib/db/schema.php index bc82249609d..b2dd982e8ea 100644 --- a/lib/db/schema.php +++ b/lib/db/schema.php @@ -6,47 +6,55 @@ * See the COPYING-README file. */ -class OC_DB_Schema { +namespace OC\DB; + +class Schema { + /** + * @var \Doctrine\DBAL\Connection $conn + */ + protected $conn; + + public function __construct(Connection $conn) { + $this->conn = $conn; + } + /** * @brief saves database scheme to xml file - * @param \Doctrine\DBAL\Connection $conn * @param string $file name of file * @param int|string $mode * @return bool * * TODO: write more documentation */ - public static function getDbStructure( $conn, $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - $sm = $conn->getSchemaManager(); + public function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { + $sm = $this->conn->getSchemaManager(); - return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); + return \OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); } /** * @brief Creates tables from XML file - * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool * * TODO: write more documentation */ - public static function createDbFromStructure( $conn, $file ) { - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + public function createDbFromStructure( $file ) { + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $toSchema = $schemaReader->loadSchemaFromFile($file); - return self::executeSchemaChange($conn, $toSchema); + return $this->executeSchemaChange($toSchema); } /** * @brief update the database scheme - * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool */ - public static function updateDbFromStructure($conn, $file) { - $sm = $conn->getSchemaManager(); + public function updateDbFromStructure($file) { + $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about @@ -65,43 +73,34 @@ class OC_DB_Schema { $comparator = new \Doctrine\DBAL\Schema\Comparator(); $schemaDiff = $comparator->compare($fromSchema, $toSchema); - $platform = $conn->getDatabasePlatform(); + $platform = $this->conn->getDatabasePlatform(); $tables = $schemaDiff->newTables + $schemaDiff->changedTables + $schemaDiff->removedTables; foreach($tables as $tableDiff) { $tableDiff->name = $platform->quoteIdentifier($tableDiff->name); } - - //$from = $fromSchema->toSql($conn->getDatabasePlatform()); - //$to = $toSchema->toSql($conn->getDatabasePlatform()); - //echo($from[9]); - //echo '
'; - //echo($to[9]); - //var_dump($from, $to); - return self::executeSchemaChange($conn, $schemaDiff); + return $this->executeSchemaChange($schemaDiff); } /** * @brief drop a table - * @param \Doctrine\DBAL\Connection $conn * @param string $tableName the table to drop */ - public static function dropTable($conn, $tableName) { - $sm = $conn->getSchemaManager(); + public function dropTable($tableName) { + $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); $toSchema = clone $fromSchema; $toSchema->dropTable($tableName); - $sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform()); - $conn->execute($sql); + $sql = $fromSchema->getMigrateToSql($toSchema, $this->conn->getDatabasePlatform()); + $this->conn->execute($sql); } /** * remove all tables defined in a database structure xml file - * @param \Doctrine\DBAL\Connection $conn * @param string $file the xml file describing the tables */ - public static function removeDBStructure($conn, $file) { - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + public function removeDBStructure($file) { + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; foreach($toSchema->getTables() as $table) { @@ -109,42 +108,40 @@ class OC_DB_Schema { } $comparator = new \Doctrine\DBAL\Schema\Comparator(); $schemaDiff = $comparator->compare($fromSchema, $toSchema); - self::executeSchemaChange($conn, $schemaDiff); + $this->executeSchemaChange($schemaDiff); } /** * @brief replaces the ownCloud tables with a new set - * @param \Doctrine\DBAL\Connection $conn * @param $file string path to the MDB2 xml db export file */ - public static function replaceDB( $conn, $file ) { - $apps = OC_App::getAllApps(); - self::beginTransaction(); + public function replaceDB( $file ) { + $apps = \OC_App::getAllApps(); + $this->conn->beginTransaction(); // Delete the old tables - self::removeDBStructure( $conn, OC::$SERVERROOT . '/db_structure.xml' ); + $this->removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); foreach($apps as $app) { - $path = OC_App::getAppPath($app).'/appinfo/database.xml'; + $path = \OC_App::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)) { - self::removeDBStructure( $conn, $path ); + $this->removeDBStructure( $path ); } } // Create new tables - self::commit(); + $this->conn->commit(); } /** - * @param \Doctrine\DBAL\Connection $conn * @param \Doctrine\DBAL\Schema\Schema $schema * @return bool */ - private static function executeSchemaChange($conn, $schema) { - $conn->beginTransaction(); - foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { - $conn->query($sql); + private function executeSchemaChange($schema) { + $this->conn->beginTransaction(); + foreach($schema->toSql($this->conn->getDatabasePlatform()) as $sql) { + $this->conn->query($sql); } - $conn->commit(); + $this->conn->commit(); return true; } } -- GitLab From 59c5529a2ba966b49622706eddce43f04b4a25b4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 2 Aug 2013 13:19:27 +0200 Subject: [PATCH 083/164] Rename \OC\DB\Schema to \OC\DB\MDB2SchemaManager --- lib/db.php | 12 ++++++------ lib/db/{schema.php => mdb2schemamanager.php} | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) rename lib/db/{schema.php => mdb2schemamanager.php} (99%) diff --git a/lib/db.php b/lib/db.php index a618e8ebb94..b92f7820f31 100644 --- a/lib/db.php +++ b/lib/db.php @@ -397,7 +397,7 @@ class OC_DB { */ public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); return $schema->getDbStructure($file); } @@ -410,7 +410,7 @@ class OC_DB { */ public static function createDbFromStructure( $file ) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); $result = $schema->createDbFromStructure($file); return $result; } @@ -423,7 +423,7 @@ class OC_DB { */ public static function updateDbFromStructure($file) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); try { $result = $schema->updateDbFromStructure($file); } catch (Exception $e) { @@ -605,7 +605,7 @@ class OC_DB { */ public static function dropTable($tableName) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); $schema->dropTable($tableName); } @@ -615,7 +615,7 @@ class OC_DB { */ public static function removeDBStructure($file) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); $schema->removeDBStructure($file); } @@ -625,7 +625,7 @@ class OC_DB { */ public static function replaceDB( $file ) { self::connectDoctrine(); - $schema = new \OC\DB\Schema(self::$connection); + $schema = new \OC\DB\MDB2SchemaManager(self::$connection); $schema->replaceDB($file); } diff --git a/lib/db/schema.php b/lib/db/mdb2schemamanager.php similarity index 99% rename from lib/db/schema.php rename to lib/db/mdb2schemamanager.php index b2dd982e8ea..2f828beb824 100644 --- a/lib/db/schema.php +++ b/lib/db/mdb2schemamanager.php @@ -8,7 +8,7 @@ namespace OC\DB; -class Schema { +class MDB2SchemaManager { /** * @var \Doctrine\DBAL\Connection $conn */ -- GitLab From f5c3a346b00b7c8e4926b898f6e6ade86de74c73 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 2 Aug 2013 13:34:20 +0200 Subject: [PATCH 084/164] make log date configurable, default to iso 8601 --- lib/log/owncloud.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 7a11a588330..e7246726d40 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,9 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $time = date("F d, Y H:i:s", time()); + // default to ISO8601 + $format = OC_Config::getValue('logdateformat', 'c'); + $time = date($format, time()); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { -- GitLab From de0dc30d8925f43ddec0e8bb5d2986ab3609919a Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 2 Aug 2013 15:00:12 +0200 Subject: [PATCH 085/164] Update skipped tests messages --- tests/lib/image.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/image.php b/tests/lib/image.php index a04fe662c18..0583c300075 100644 --- a/tests/lib/image.php +++ b/tests/lib/image.php @@ -55,7 +55,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testMimeType() { - $this->markTestSkipped("When loading an image from anything, but a file, the imagetype is always png"); + $this->markTestSkipped("When loading from data or base64, imagetype is always image/png, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); @@ -105,7 +105,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testData() { - $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals($expected, $img->data()); @@ -120,7 +120,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testToString() { - $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); $this->assertEquals($expected, (string)$img); -- GitLab From 258e54182a9d68191a721ddc904e3e0299438b70 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 2 Aug 2013 15:09:50 +0200 Subject: [PATCH 086/164] remove invalid type hinting and cleanup namespaces a bit --- lib/db/mdb2schemamanager.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/db/mdb2schemamanager.php b/lib/db/mdb2schemamanager.php index 2f828beb824..a34bc9dae75 100644 --- a/lib/db/mdb2schemamanager.php +++ b/lib/db/mdb2schemamanager.php @@ -14,7 +14,10 @@ class MDB2SchemaManager { */ protected $conn; - public function __construct(Connection $conn) { + /** + * @param \Doctrine\DBAL\Connection $conn + */ + public function __construct($conn) { $this->conn = $conn; } @@ -26,7 +29,7 @@ class MDB2SchemaManager { * * TODO: write more documentation */ - public function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { + public function getDbStructure( $file, $mode = MDB2_SCHEMA_DUMP_STRUCTURE) { $sm = $this->conn->getSchemaManager(); return \OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); @@ -40,7 +43,7 @@ class MDB2SchemaManager { * TODO: write more documentation */ public function createDbFromStructure( $file ) { - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $toSchema = $schemaReader->loadSchemaFromFile($file); return $this->executeSchemaChange($toSchema); } @@ -54,7 +57,7 @@ class MDB2SchemaManager { $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about @@ -100,7 +103,7 @@ class MDB2SchemaManager { * @param string $file the xml file describing the tables */ public function removeDBStructure($file) { - $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; foreach($toSchema->getTables() as $table) { -- GitLab From a7a05b321afd0085bd0e8c068c95e654d229e27c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 2 Aug 2013 15:36:54 +0200 Subject: [PATCH 087/164] Use console.php entry point for file scanning from console --- scanFiles.php => apps/files/console/scan.php | 2 -- console.php | 25 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) rename scanFiles.php => apps/files/console/scan.php (95%) create mode 100644 console.php diff --git a/scanFiles.php b/apps/files/console/scan.php similarity index 95% rename from scanFiles.php rename to apps/files/console/scan.php index 2144fce5d5a..118e586aea3 100644 --- a/scanFiles.php +++ b/apps/files/console/scan.php @@ -1,7 +1,5 @@ + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +$RUNTIME_NOAPPS = true; +require_once 'lib/base.php'; + +// Don't do anything if ownCloud has not been installed yet +if (!OC_Config::getValue('installed', false)) { + exit(0); +} + +if (OC::$CLI) { + if ($argc > 1 && $argv[1] === 'files:scan') { + require_once 'apps/files/console/scan.php'; + } +} +else +{ + echo "This script can be run from the command line only\n"; +} -- GitLab From 5ffb8fac24801800048c4c2e68c0f8fb6582769c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 2 Aug 2013 16:02:33 +0200 Subject: [PATCH 088/164] Use function to create schema manager --- lib/db.php | 55 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/lib/db.php b/lib/db.php index b92f7820f31..a14fab0c774 100644 --- a/lib/db.php +++ b/lib/db.php @@ -194,6 +194,27 @@ class OC_DB { return true; } + /** + * get the database connection object + * + * @return \Doctrine\DBAL\Connection + */ + private static function getConnection() + { + self::connect(); + return self::$connection; + } + + /** + * get MDB2 schema manager + * + * @return \OC\DB\MDB2SchemaManager + */ + private static function getMDB2SchemaManager() + { + return new \OC\DB\MDB2SchemaManager(self::getConnection()); + } + /** * @brief Prepare a SQL query * @param string $query Query string @@ -388,7 +409,7 @@ class OC_DB { } /** else { - * @brief saves database scheme to xml file + * @brief saves database schema to xml file * @param string $file name of file * @param int $mode * @return bool @@ -396,9 +417,8 @@ class OC_DB { * TODO: write more documentation */ public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); - return $schema->getDbStructure($file); + $schemaManager = self::getMDB2SchemaManager(); + return $schemaManager->getDbStructure($file); } /** @@ -409,23 +429,21 @@ class OC_DB { * TODO: write more documentation */ public static function createDbFromStructure( $file ) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); - $result = $schema->createDbFromStructure($file); + $schemaManager = self::getMDB2SchemaManager(); + $result = $schemaManager->createDbFromStructure($file); return $result; } /** - * @brief update the database scheme + * @brief update the database schema * @param string $file file to read structure from * @throws Exception * @return bool */ public static function updateDbFromStructure($file) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); + $schemaManager = self::getMDB2SchemaManager(); try { - $result = $schema->updateDbFromStructure($file); + $result = $schemaManager->updateDbFromStructure($file); } catch (Exception $e) { OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); throw $e; @@ -604,9 +622,8 @@ class OC_DB { * @param string $tableName the table to drop */ public static function dropTable($tableName) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); - $schema->dropTable($tableName); + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->dropTable($tableName); } /** @@ -614,9 +631,8 @@ class OC_DB { * @param string $file the xml file describing the tables */ public static function removeDBStructure($file) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); - $schema->removeDBStructure($file); + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->removeDBStructure($file); } /** @@ -624,9 +640,8 @@ class OC_DB { * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $file ) { - self::connectDoctrine(); - $schema = new \OC\DB\MDB2SchemaManager(self::$connection); - $schema->replaceDB($file); + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->replaceDB($file); } /** -- GitLab From fd317f599bd1d5fe2ae0260f3dec476a6efd5fdd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 22:59:06 +0100 Subject: [PATCH 089/164] Simplify OC_DB transaction functions --- lib/db.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/db.php b/lib/db.php index dd48c329490..311cdcfecf5 100644 --- a/lib/db.php +++ b/lib/db.php @@ -56,7 +56,6 @@ class OC_DB { */ static private $DOCTRINE=null; - static private $inTransaction=false; static private $prefix=null; static private $type=null; @@ -624,27 +623,18 @@ class OC_DB { /** * Start a transaction - * @return bool */ public static function beginTransaction() { self::connect(); self::$connection->beginTransaction(); - self::$inTransaction=true; - return true; } /** * Commit the database changes done during a transaction that is in progress - * @return bool */ public static function commit() { self::connect(); - if(!self::$inTransaction) { - return false; - } self::$connection->commit(); - self::$inTransaction=false; - return true; } /** -- GitLab From ed054e67d60e8ad8074b38842935e5dff927350c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 2 Aug 2013 20:10:26 +0200 Subject: [PATCH 090/164] DB: remove invalid asserts --- tests/lib/db.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index 79e05f30a1c..51edbf7b309 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -76,13 +76,11 @@ class Test_DB extends PHPUnit_Framework_TestCase { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1')); $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); - $this->assertInternalType('int', $id1); // we don't know the id we should expect, so insert another row $result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2')); $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); // now we can check if the two ids are in correct order - $this->assertInternalType('int', $id2); $this->assertGreaterThan($id1, $id2); } -- GitLab From 72ad843203f4bb2d0f88c9b85b424198d7fd28a8 Mon Sep 17 00:00:00 2001 From: Alexander Bogdanov Date: Fri, 2 Aug 2013 23:18:29 +0400 Subject: [PATCH 091/164] Fixing owncloud/core#4301 Adding a CURLOPT_FOLLOWLOCATION for HTTP 301 support (e.g yandex disk uses those) --- apps/files_external/lib/webdav.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 4869322d87a..f98be318f1c 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -173,6 +173,7 @@ class DAV extends \OC\Files\Storage\Common{ curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password); curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().$path); curl_setopt($curl, CURLOPT_FILE, $fp); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_exec ($curl); curl_close ($curl); -- GitLab From 5e1a775016ef9eca6d05c0503996650688e39575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:23:26 +0200 Subject: [PATCH 092/164] adjust usage text --- apps/files/console/scan.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/console/scan.php b/apps/files/console/scan.php index 118e586aea3..b9eccfb9934 100644 --- a/apps/files/console/scan.php +++ b/apps/files/console/scan.php @@ -6,9 +6,9 @@ if (!OC::$CLI) { } if (count($argv) !== 2) { echo "Usage:" . PHP_EOL; - echo " php scanFiles.php " . PHP_EOL; + echo " files:scan " . PHP_EOL; echo " will rescan all files of the given user" . PHP_EOL; - echo " php scanFiles.php --all" . PHP_EOL; + echo " files:scan --all" . PHP_EOL; echo " will rescan all files of all known users" . PHP_EOL; return; } -- GitLab From 58f369d0290feed5c2bc026b22e9ce74d8e85c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:23:50 +0200 Subject: [PATCH 093/164] more verbose printouts - fixing execution --- console.php | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/console.php b/console.php index a3b1357a287..538837a04b4 100644 --- a/console.php +++ b/console.php @@ -11,15 +11,26 @@ require_once 'lib/base.php'; // Don't do anything if ownCloud has not been installed yet if (!OC_Config::getValue('installed', false)) { + echo "Console can only be used once ownCloud has been installed" . PHP_EOL; exit(0); } -if (OC::$CLI) { - if ($argc > 1 && $argv[1] === 'files:scan') { - require_once 'apps/files/console/scan.php'; - } +if (!OC::$CLI) { + echo "This script can be run from the command line only" . PHP_EOL; + exit(0); +} + +if ($argc < 1) { + echo "Usage:" . PHP_EOL; + echo " php console.php " . PHP_EOL; + exit(0); } -else -{ - echo "This script can be run from the command line only\n"; + +$command = $argv[1]; +array_shift($argv); + +if ($command === 'files:scan') { + require_once 'apps/files/console/scan.php'; +} else { + echo "Unknown command '$command'" . PHP_EOL; } -- GitLab From 010c4e0b833409e233b60c2a833485d2f1a34989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:28:04 +0200 Subject: [PATCH 094/164] remove cli check --- apps/files/console/scan.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/files/console/scan.php b/apps/files/console/scan.php index b9eccfb9934..70183fc888a 100644 --- a/apps/files/console/scan.php +++ b/apps/files/console/scan.php @@ -1,9 +1,5 @@ " . PHP_EOL; -- GitLab From 389d0824e8c5b87e4a49dffa06a7985d891a53bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:45:36 +0200 Subject: [PATCH 095/164] add new line to generated php code --- l10n/l10n.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 2a02e19c714..e3a42aefe22 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -173,7 +173,7 @@ elsif( $task eq 'write' ){ open( OUT, ">$language.php" ); print OUT " Date: Fri, 2 Aug 2013 21:46:25 +0200 Subject: [PATCH 096/164] PHPDoc comments adjusted *partially* - fixing call to createPluralFormFunction --- lib/l10n.php | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index ab2de5d9f19..0e47215369c 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -2,8 +2,10 @@ /** * ownCloud * + * @author Frank Karlitschek * @author Jakob Sack * @copyright 2012 Frank Karlitschek frank@owncloud.org + * @copyright 2013 Jakob Sack * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -76,6 +78,8 @@ class OC_L10N{ /** * get an L10N instance + * @param $app string + * @param $lang string|null * @return OC_L10N */ public static function get($app, $lang=null) { @@ -91,8 +95,8 @@ class OC_L10N{ /** * @brief The constructor - * @param $app the app requesting l10n - * @param $lang default: null Language + * @param $app string app requesting l10n + * @param $lang string default: null Language * @returns OC_L10N-Object * * If language is not set, the constructor tries to find the right @@ -168,15 +172,14 @@ class OC_L10N{ /** * @brief Creates a function that The constructor - * @param $app the app requesting l10n - * @param $lang default: null Language - * @returns OC_L10N-Object * * If language is not set, the constructor tries to find the right * language. * * Parts of the code is copied from Habari: * https://github.com/habari/system/blob/master/classes/locale.php + * @param $string string + * @return string */ protected function createPluralFormFunction($string){ if(preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s*plural=(.*)$/u', $string, $matches)) { @@ -190,7 +193,7 @@ class OC_L10N{ 'nplurals='. $nplurals . '; plural=' . $plural ); - // add parens + // add parents // important since PHP's ternary evaluates from left to right $body .= ';'; $res = ''; @@ -305,7 +308,7 @@ class OC_L10N{ /** * @brief getPluralFormString - * @returns Fetches the gettext "Plural-Forms"-string + * @returns string containing the gettext "Plural-Forms"-string * * Returns a string like "nplurals=2; plural=(n != 1);" */ @@ -316,14 +319,14 @@ class OC_L10N{ /** * @brief getPluralFormFunction - * @returns returns the plural form function + * @returns string the plural form function * * returned function accepts the argument $n */ public function getPluralFormFunction() { $this->init(); if(is_null($this->plural_form_function)) { - $this->plural_form_function = createPluralFormFunction($this->plural_form_string); + $this->plural_form_function = $this->createPluralFormFunction($this->plural_form_string); } return $this->plural_form_function; } @@ -369,8 +372,12 @@ class OC_L10N{ case 'date': case 'datetime': case 'time': - if($data instanceof DateTime) return $data->format($this->localizations[$type]); - elseif(is_string($data)) $data = strtotime($data); + if($data instanceof DateTime) { + return $data->format($this->localizations[$type]); + } + elseif(is_string($data)) { + $data = strtotime($data); + } $locales = array(self::findLanguage()); if (strlen($locales[0]) == 2) { $locales[] = $locales[0].'_'.strtoupper($locales[0]); -- GitLab From 550b647d8a777c11b74377002d58b4806f9e97e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 23:07:53 +0200 Subject: [PATCH 097/164] another new line --- l10n/l10n.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index e3a42aefe22..2790ca92015 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -171,7 +171,7 @@ elsif( $task eq 'write' ){ # Write PHP file open( OUT, ">$language.php" ); - print OUT " Date: Fri, 2 Aug 2013 23:08:41 +0200 Subject: [PATCH 098/164] unit tests for plural translations added --- lib/l10n.php | 16 ++++++++++-- lib/l10n/string.php | 26 +++++++++++++++++--- tests/data/l10n/cs.php | 5 ++++ tests/data/l10n/de.php | 5 ++++ tests/data/l10n/ru.php | 5 ++++ tests/lib/l10n.php | 55 ++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 106 insertions(+), 6 deletions(-) create mode 100644 tests/data/l10n/cs.php create mode 100644 tests/data/l10n/de.php create mode 100644 tests/data/l10n/ru.php create mode 100644 tests/lib/l10n.php diff --git a/lib/l10n.php b/lib/l10n.php index 0e47215369c..a11ed785c5e 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -25,7 +25,7 @@ /** * This class is for i18n and l10n */ -class OC_L10N{ +class OC_L10N { /** * cached instances */ @@ -107,6 +107,17 @@ class OC_L10N{ $this->lang = $lang; } + public function load($transFile) { + $this->app = true; + include $transFile; + if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { + $this->translations = $TRANSLATIONS; + } + if(isset($PLURAL_FORMS)) { + $this->plural_form_string = $PLURAL_FORMS; + } + } + protected function init() { if ($this->app === true) { return; @@ -258,8 +269,9 @@ class OC_L10N{ * */ public function n($text_singular, $text_plural, $count, $parameters = array()) { + $this->init(); $identifier = "_${text_singular}__${text_plural}_"; - if( array_key_exists($this->translations, $identifier)) { + if( array_key_exists($identifier, $this->translations)) { return new OC_L10N_String( $this, $identifier, $parameters, $count ); } else{ diff --git a/lib/l10n/string.php b/lib/l10n/string.php index c78b06428d3..88c85b32e70 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -7,30 +7,48 @@ */ class OC_L10N_String{ + /** + * @var OC_L10N + */ protected $l10n; + + /** + * @var string + */ + protected $text; + + /** + * @var array + */ + protected $parameters; + + /** + * @var integer + */ + protected $count; + public function __construct($l10n, $text, $parameters, $count = 1) { $this->l10n = $l10n; $this->text = $text; $this->parameters = $parameters; $this->count = $count; - } public function __toString() { $translations = $this->l10n->getTranslations(); - $localizations = $this->l10n->getLocalizations(); $text = $this->text; if(array_key_exists($this->text, $translations)) { if(is_array($translations[$this->text])) { - $fn = $l10n->getPluralFormFunction(); - $id = $fn($count); + $fn = $this->l10n->getPluralFormFunction(); + $id = $fn($this->count); $text = $translations[$this->text][$id]; } else{ $text = $translations[$this->text]; } } + // Replace %n first (won't interfere with vsprintf) $text = str_replace('%n', $this->count, $text); return vsprintf($text, $this->parameters); diff --git a/tests/data/l10n/cs.php b/tests/data/l10n/cs.php new file mode 100644 index 00000000000..1c5907bc148 --- /dev/null +++ b/tests/data/l10n/cs.php @@ -0,0 +1,5 @@ + array("%n okno", "%n okna", "%n oken") +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/tests/data/l10n/de.php b/tests/data/l10n/de.php new file mode 100644 index 00000000000..858ec8af49c --- /dev/null +++ b/tests/data/l10n/de.php @@ -0,0 +1,5 @@ + array("%n Datei", "%n Dateien") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/tests/data/l10n/ru.php b/tests/data/l10n/ru.php new file mode 100644 index 00000000000..dd46293db6c --- /dev/null +++ b/tests/data/l10n/ru.php @@ -0,0 +1,5 @@ + array("%n файл", "%n файла", "%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);"; diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php new file mode 100644 index 00000000000..846a2f22c8e --- /dev/null +++ b/tests/lib/l10n.php @@ -0,0 +1,55 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_L10n extends PHPUnit_Framework_TestCase { + + public function testGermanPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/de.php'; + + $l->load($transFile); + $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1, array(1))); + $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2, array(2))); + } + + public function testRussianPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/ru.php'; + + $l->load($transFile); + $this->assertEquals('1 файл', (string)$l->n('%n file', '%n files', 1)); + $this->assertEquals('2 файла', (string)$l->n('%n file', '%n files', 2)); + $this->assertEquals('6 файлов', (string)$l->n('%n file', '%n files', 6)); + $this->assertEquals('21 файл', (string)$l->n('%n file', '%n files', 21)); + $this->assertEquals('22 файла', (string)$l->n('%n file', '%n files', 22)); + $this->assertEquals('26 файлов', (string)$l->n('%n file', '%n files', 26)); + + /* + 1 file 1 файл 1 папка + 2-4 files 2-4 файла 2-4 папки + 5-20 files 5-20 файлов 5-20 папок + 21 files 21 файл 21 папка + 22-24 files 22-24 файла 22-24 папки + 25-30 files 25-30 файлов 25-30 папок + etc + 100 files 100 файлов, 100 папок + 1000 files 1000 файлов 1000 папок + */ + } + + public function testCzechPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/cs.php'; + + $l->load($transFile); + $this->assertEquals('1 okno', (string)$l->n('%n window', '%n windows', 1)); + $this->assertEquals('2 okna', (string)$l->n('%n window', '%n windows', 2)); + $this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5)); + } + +} -- GitLab From 8edc0f210bd95a917551cf785584182bcfe867e1 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Sat, 3 Aug 2013 00:00:32 -0400 Subject: [PATCH 099/164] use theme name and title for password reset password reset email uses owncloud, updated to use theme settings --- core/lostpassword/controller.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index 2f996365219..de7af21c07b 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -57,7 +57,8 @@ class OC_Core_LostPassword_Controller { $l = OC_L10N::get('core'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); try { - OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); + $defaults = new OC_Defaults(); + OC_Mail::send($email, $_POST['user'], $l->t($defaults->getTitle(); . ' password reset'), $msg, $from, $defaults->getName()); } catch (Exception $e) { OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.'); } -- GitLab From 17fe748abc68f016f8bf894a2d0079f0f2ed5c66 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 3 Aug 2013 01:56:46 -0400 Subject: [PATCH 100/164] [tx-robot] updated from transifex --- apps/files_encryption/l10n/gl.php | 1 + apps/files_encryption/l10n/it.php | 1 + apps/files_encryption/l10n/sv.php | 1 + apps/files_sharing/l10n/sv.php | 6 +++ apps/files_trashbin/l10n/pt_PT.php | 1 + apps/files_trashbin/l10n/sv.php | 1 + apps/user_ldap/l10n/sv.php | 8 ++++ apps/user_webdavauth/l10n/sv.php | 4 +- core/l10n/sv.php | 2 + core/l10n/zh_CN.GB2312.php | 14 +++++++ l10n/gl/files_encryption.po | 8 ++-- l10n/it/files_encryption.po | 8 ++-- l10n/pt_PT/files_trashbin.po | 9 +++-- l10n/sv/core.po | 36 ++++++++--------- l10n/sv/files_encryption.po | 8 ++-- l10n/sv/files_sharing.po | 19 ++++----- l10n/sv/files_trashbin.po | 9 +++-- l10n/sv/settings.po | 19 ++++----- l10n/sv/user_ldap.po | 23 +++++------ l10n/sv/user_webdavauth.po | 10 ++--- l10n/templates/core.pot | 28 ++++++------- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_CN.GB2312/core.po | 61 +++++++++++++++-------------- l10n/zh_CN.GB2312/settings.po | 27 +++++++------ settings/l10n/sv.php | 6 +++ settings/l10n/zh_CN.GB2312.php | 10 +++++ 35 files changed, 200 insertions(+), 140 deletions(-) diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index db6f57bb36d..7b3ad526734 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", +"Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 8d15d1ced36..db1a1b1709a 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Missing requirements." => "Requisiti mancanti.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", +"Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", "You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 2cef6686fce..785d46cdc76 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.", +"Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index dac5e33ec50..434a81ac28a 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", +"Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", +"Reasons might be:" => "Orsaker kan vara:", +"the item was removed" => "objektet togs bort", +"the link expired" => "giltighet för länken har gått ut", +"sharing is disabled" => "delning är inaktiverat", +"For more info, please ask the person who sent this link." => "För mer information, kontakta den person som skickade den här länken.", "%s shared the folder %s with you" => "%s delade mappen %s med dig", "%s shared the file %s with you" => "%s delade filen %s med dig", "Download" => "Ladda ner", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index ba85158b70e..044d324c5ab 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index d56d8946f34..2e4a5b42612 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mappar", "1 file" => "1 fil", "{count} files" => "{count} filer", +"restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", "Restore" => "Återskapa", "Delete" => "Radera", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 60bfd7829ed..2617ca414aa 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -15,6 +15,7 @@ "Connection test failed" => "Anslutningstestet misslyckades", "Do you really want to delete the current Server Configuration?" => "Vill du verkligen radera den nuvarande serverinställningen?", "Confirm Deletion" => "Bekräfta radering", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Varning: PHP LDAP - modulen är inte installerad, serversidan kommer inte att fungera. Kontakta din systemadministratör för installation.", "Server configuration" => "Serverinställning", "Add Server Configuration" => "Lägg till serverinställning", @@ -44,20 +45,24 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern", "Backup (Replica) Port" => "Säkerhetskopierins-port (Replika)", "Disable Main Server" => "Inaktivera huvudserver", +"Only connect to the replica server." => "Anslut endast till replikaservern.", "Use TLS" => "Använd TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Använd inte för LDAPS-anslutningar, det kommer inte att fungera.", "Case insensitve LDAP server (Windows)" => "LDAP-servern är okänslig för gemener och versaler (Windows)", "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Om anslutningen bara fungerar med detta alternativ, importera LDAP-serverns SSL-certifikat i din% s server.", "Not recommended, use for testing only." => "Rekommenderas inte, använd bara för test. ", "Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "i sekunder. En förändring tömmer cache.", "Directory Settings" => "Mappinställningar", "User Display Name Field" => "Attribut för användarnamn", +"The LDAP attribute to use to generate the user's display name." => "LDAP-attributet som ska användas för att generera användarens visningsnamn.", "Base User Tree" => "Bas för användare i katalogtjänst", "One User Base DN per line" => "En Användare start DN per rad", "User Search Attributes" => "Användarsökningsattribut", "Optional; one attribute per line" => "Valfritt; ett attribut per rad", "Group Display Name Field" => "Attribut för gruppnamn", +"The LDAP attribute to use to generate the groups's display name." => "LDAP-attributet som ska användas för att generera gruppens visningsnamn.", "Base Group Tree" => "Bas för grupper i katalogtjänst", "One Group Base DN per line" => "En Grupp start DN per rad", "Group Search Attributes" => "Gruppsökningsattribut", @@ -70,10 +75,13 @@ "User Home Folder Naming Rule" => "Namnregel för hemkatalog", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut.", "Internal Username" => "Internt Användarnamn", +"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." => "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare", "Internal Username Attribute:" => "Internt Användarnamn Attribut:", "Override UUID detection" => "Åsidosätt UUID detektion", +"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." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.", "UUID Attribute:" => "UUID Attribut:", "Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping", +"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." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!", "Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping", "Clear Groupname-LDAP Group Mapping" => "Rensa Gruppnamn-LDAP Group Mapping", "Test Configuration" => "Testa konfigurationen", diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 95096ce7e95..6aae1c2e1a8 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,3 +1,5 @@ "WebDAV Autentisering" +"WebDAV Authentication" => "WebDAV Autentisering", +"Address: " => "Adress: ", +"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." => "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 9fdebe6377e..091ae9e2fae 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -110,9 +110,11 @@ "Add" => "Lägg till", "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.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.", +"For information how to properly configure your server, please see the
documentation." => "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen.", "Create an admin account" => "Skapa ett administratörskonto", "Advanced" => "Avancerad", "Data folder" => "Datamapp", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 26e524d016f..fce45b3c98a 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,8 +1,10 @@ "%s 与您共享了 »%s« ", "Category type not provided." => "未选择分类类型。", "No category to add?" => "没有分类添加了?", "This category already exists: %s" => "此分类已存在:%s", "Object type not provided." => "未选择对象类型。", +"%s ID not provided." => "%s 没有提供 ID", "Error adding %s to favorites." => "在添加 %s 到收藏夹时发生错误。", "No categories selected for deletion." => "没有选中要删除的分类。", "Error removing %s from favorites." => "在移除收藏夹中的 %s 时发生错误。", @@ -41,6 +43,7 @@ "years ago" => "年前", "Choose" => "选择", "Cancel" => "取消", +"Error loading file picker template" => "加载文件选取模板出错", "Yes" => "是", "No" => "否", "Ok" => "好的", @@ -59,6 +62,7 @@ "Share with link" => "分享链接", "Password protect" => "密码保护", "Password" => "密码", +"Allow Public Upload" => "允许公众上传", "Email link to person" => "面向个人的电子邮件链接", "Send" => "发送", "Set expiration date" => "设置失效日期", @@ -83,8 +87,12 @@ "The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", "ownCloud password reset" => "私有云密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", +"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 ." => "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。", +"Request failed!
Did you make sure your email/username was right?" => "请求失败!
你确定你的邮件地址/用户名是正确的?", "You will receive a link to reset your password via Email." => "你将会收到一个重置密码的链接", "Username" => "用户名", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?", +"Yes, I really want to reset my password now" => "是的,我想现在重置密码。", "Request reset" => "要求重置", "Your password was reset" => "你的密码已经被重置了", "To login page" => "转至登陆页面", @@ -97,12 +105,16 @@ "Help" => "帮助", "Access forbidden" => "禁止访问", "Cloud not found" => "云 没有被找到", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!", "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "请安全地升级您的PHP版本到 %s 。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。", +"For information how to properly configure your server, please see the documentation." => "有关如何正确地配置您的服务器,请查看 文档。", "Create an admin account" => "建立一个 管理帐户", "Advanced" => "进阶", "Data folder" => "数据存放文件夹", @@ -114,6 +126,7 @@ "Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", +"%s is available. Get more information on how to update." => "%s 是可用的。获取更多关于升级的信息。", "Log out" => "注销", "Automatic logon rejected!" => "自动登录被拒绝!", "If you did not change your password recently, your account may be compromised!" => "如果您最近没有修改您的密码,那您的帐号可能被攻击了!", @@ -122,6 +135,7 @@ "remember" => "记住登录", "Log in" => "登陆", "Alternative Logins" => "备选登录", +"Hey there,

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

Cheers!" => "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!", "prev" => "后退", "next" => "前进", "Updating ownCloud to version %s, this may take a while." => "ownCloud正在升级至 %s 版,这可能需要一点时间。" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 92948d143c7..a9de5bfcc7f 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:20+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" @@ -77,7 +77,7 @@ msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a e #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index a97ce2655be..d550f72c047 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 07:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,7 +77,7 @@ msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'es #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "I seguenti utenti non sono configurati per la cifratura:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 91fb52f83b7..b64a08b08e8 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 14:30+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" @@ -69,7 +70,7 @@ msgstr "{count} ficheiros" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 035b2dc7070..5ba113d3c75 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -145,55 +145,55 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "förra månaden" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "månader sedan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "förra året" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år sedan" @@ -500,7 +500,7 @@ msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Var god uppdatera din PHP-installation för att använda %s säkert." #: templates/installation.php:32 msgid "" @@ -525,7 +525,7 @@ msgstr "Din datakatalog och filer är förmodligen tillgängliga från Internet, msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 5edf9c93bab..bf274e5e5aa 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -78,7 +78,7 @@ msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägge #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Följande användare har inte aktiverat kryptering:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 3658d3cedd9..e8c04f5f3d9 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 # Stefan Gagner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -32,27 +33,27 @@ msgstr "Skicka" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Tyvärr, denna länk verkar inte fungera längre." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Orsaker kan vara:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "objektet togs bort" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "giltighet för länken har gått ut" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "delning är inaktiverat" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "För mer information, kontakta den person som skickade den här länken." #: templates/public.php:15 #, php-format diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 8a28bd54295..2bf5591f7ab 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -69,7 +70,7 @@ msgstr "{count} filer" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "återställd" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 95d9e82bbd7..f765a1c04f4 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -7,14 +7,15 @@ # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 +# Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 22:00+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -185,7 +186,7 @@ msgid "" "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 "" +msgstr "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog." #: templates/admin.php:29 msgid "Setup Warning" @@ -222,7 +223,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s." #: templates/admin.php:75 msgid "Internet connection not working" @@ -235,7 +236,7 @@ msgid "" "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 "" +msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." #: templates/admin.php:92 msgid "Cron" @@ -249,11 +250,11 @@ msgstr "Exekvera en uppgift vid varje sidladdning" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "Använd system-tjänsten cron för att anropa cron.php varje minut." #: templates/admin.php:128 msgid "Sharing" @@ -318,7 +319,7 @@ msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" #: templates/admin.php:211 msgid "Log" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index f963b8165b6..e379fcecef0 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # Jan Busk, 2013 +# Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:40+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -92,7 +93,7 @@ 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 "" +msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." #: templates/settings.php:12 msgid "" @@ -224,7 +225,7 @@ msgstr "Inaktivera huvudserver" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Anslut endast till replikaservern." #: templates/settings.php:76 msgid "Use TLS" @@ -247,7 +248,7 @@ msgstr "Stäng av verifiering av SSL-certifikat." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Om anslutningen bara fungerar med detta alternativ, importera LDAP-serverns SSL-certifikat i din% s server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +272,7 @@ msgstr "Attribut för användarnamn" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP-attributet som ska användas för att generera användarens visningsnamn." #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +296,7 @@ msgstr "Attribut för gruppnamn" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP-attributet som ska användas för att generera gruppens visningsnamn." #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +362,7 @@ msgid "" "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 "" +msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +381,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +403,7 @@ msgid "" " 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 "" +msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index dc9a523c43a..fe31213d10f 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -25,11 +25,11 @@ msgstr "WebDAV Autentisering" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adress: " #: templates/settings.php:7 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 "" +msgstr "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 38f45d3131e..34c057e60ea 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b1d3cd06b8f..e246ef91b15 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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_encryption.pot b/l10n/templates/files_encryption.pot index 84373684018..910a360b103 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 b02077817c9..aafb20f57d4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 659a2efda8e..e99ea89aca3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 e5715a17101..454a43fae7f 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 60a03da00ba..d2995c94a39 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 90919c9cfd9..e0a2511e1ce 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 440917eb07e..70e56ee8947 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 7b20dd62de8..9fdcbc5a290 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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 9ef6b6c05cc..95e6a6ad41e 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-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/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index f39018da430..7828ac9a31e 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,14 +4,15 @@ # # Translators: # fkj , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 12:20+0000\n" +"Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 与您共享了 »%s« " #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -47,7 +48,7 @@ msgstr "未选择对象类型。" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s 没有提供 ID" #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -143,55 +144,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上个月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" @@ -205,7 +206,7 @@ msgstr "取消" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "加载文件选取模板出错" #: js/oc-dialogs.js:164 msgid "Yes" @@ -286,7 +287,7 @@ msgstr "密码" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "允许公众上传" #: js/share.js:202 msgid "Email link to person" @@ -392,11 +393,11 @@ 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 "" +msgstr "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "请求失败!
你确定你的邮件地址/用户名是正确的?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -413,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "是的,我想现在重置密码。" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -476,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -493,12 +494,12 @@ msgstr "安全警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "请安全地升级您的PHP版本到 %s 。" #: templates/installation.php:32 msgid "" @@ -523,7 +524,7 @@ msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "有关如何正确地配置您的服务器,请查看 文档。" #: templates/installation.php:47 msgid "Create an admin account" @@ -574,7 +575,7 @@ msgstr "完成安装" #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s 是可用的。获取更多关于升级的信息。" #: templates/layout.user.php:66 msgid "Log out" @@ -615,7 +616,7 @@ msgstr "备选登录" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index fd864864730..092a305f344 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,14 +4,15 @@ # # Translators: # hlx98007 , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 12:00+0000\n" +"Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,7 +183,7 @@ msgid "" "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 "" +msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:29 msgid "Setup Warning" @@ -197,7 +198,7 @@ msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同 #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请双击安装向导。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -219,7 +220,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -232,7 +233,7 @@ msgid "" "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 "" +msgstr "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。" #: templates/admin.php:92 msgid "Cron" @@ -246,11 +247,11 @@ msgstr "在每个页面载入时执行一项任务" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。" #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:128 msgid "Sharing" @@ -274,12 +275,12 @@ msgstr "允许用户通过链接共享内容" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "允许公众账户上传" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "允许其它人向用户的公众共享文件夹里上传文件" #: templates/admin.php:160 msgid "Allow resharing" @@ -308,14 +309,14 @@ msgstr "强制HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "强制客户端通过加密连接与%s连接" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。" #: templates/admin.php:211 msgid "Log" diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index eea0f39976d..3ab574bd449 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -37,15 +37,20 @@ "A valid password must be provided" => "Ett giltigt lösenord måste anges", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", +"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." => "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" => "Installationsvarning", "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." => "Vänligen dubbelkolla igenom installationsguiden.", "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Locale not working" => "Locale fungerar inte", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", +"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." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http.", +"Use systems cron service to call the cron.php file once a minute." => "Använd system-tjänsten cron för att anropa cron.php varje minut.", "Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", @@ -60,6 +65,7 @@ "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.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL", "Log" => "Logg", "Log level" => "Nivå på loggning", "More" => "Mer", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 756fd2f33e2..1853bae9207 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -37,25 +37,35 @@ "A valid password must be provided" => "请填写有效密码", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"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." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", "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”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。", "Locale not working" => "区域设置未运作", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。", "Internet connection not working" => "互联网连接未运作", +"This 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." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。", "Cron" => "Cron", "Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service to call the cron.php file once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", "Sharing" => "分享", "Enable Share API" => "开启分享API", "Allow apps to use the Share API" => "允许应用使用分享API", "Allow links" => "允许链接", "Allow users to share items to the public with links" => "允许用户通过链接共享内容", +"Allow public uploads" => "允许公众账户上传", +"Allow users to enable others to upload into their publicly shared folders" => "允许其它人向用户的公众共享文件夹里上传文件", "Allow resharing" => "允许转帖", "Allow users to share items shared with them again" => "允许用户再次共享已共享的内容", "Allow users to share with anyone" => "允许用户向任何人分享", "Allow users to only share with users in their groups" => "只允许用户向所在群组中的其他用户分享", "Security" => "安全", "Enforce HTTPS" => "强制HTTPS", +"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的开关。", "Log" => "日志", "Log level" => "日志等级", "More" => "更多", -- GitLab From 3534c3b3735242afa5c991417027a8c8e41e6465 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 3 Aug 2013 21:59:32 +0200 Subject: [PATCH 101/164] add reveal mimetype --- lib/mimetypes.list.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 2aac3bbfd27..8ab8ac81bd8 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -102,5 +102,6 @@ return array( 'md' => 'text/markdown', 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', - 'mdwn' => 'text/markdown' + 'mdwn' => 'text/markdown', + 'reveal' => 'text/reveal' ); -- GitLab From 2e5f1142be7101ccca0b45539d585df95dc61116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 3 Aug 2013 23:27:18 +0200 Subject: [PATCH 102/164] return plural form in ajax translations --- core/ajax/translations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ajax/translations.php b/core/ajax/translations.php index c9c64207798..e829453dbcc 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -27,4 +27,4 @@ $app = OC_App::cleanAppId($app); $l = OC_L10N::get( $app ); -OC_JSON::success(array('data' => $l->getTranslations())); +OC_JSON::success(array('data' => $l->getTranslations(), 'plural_form' => $l->getPluralFormString())); -- GitLab From b229381dda7203402e00cb6f58c3b8a147556b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 3 Aug 2013 23:29:31 +0200 Subject: [PATCH 103/164] initialize $plural_form_string with English default --- lib/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/l10n.php b/lib/l10n.php index a11ed785c5e..b1f2fceeb16 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -59,7 +59,7 @@ class OC_L10N { /** * Plural forms (string) */ - private $plural_form_string; + private $plural_form_string = 'nplurals=2; plural=(n != 1);'; /** * Plural forms (function) -- GitLab From d97e3c3571acb2ea88623384f4b17ced41dc0be9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 3 Aug 2013 23:31:49 +0200 Subject: [PATCH 104/164] adding proper evaluation of plural form - uses LGPL licensed code of jsgettext --- core/js/js.js | 79 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 62 insertions(+), 17 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 37540bd15e7..b687c408bca 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -24,6 +24,55 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == } } +function initL10N(app) { + if (!( t.cache[app] )) { + $.ajax(OC.filePath('core', 'ajax', 'translations.php'), { + async: false,//todo a proper solution for this without sync ajax calls + data: {'app': app}, + type: 'POST', + success: function (jsondata) { + t.cache[app] = jsondata.data; + t.plural_form = jsondata.plural_form; + } + }); + + // Bad answer ... + if (!( t.cache[app] )) { + t.cache[app] = []; + } + } + if (typeof t.plural_function == 'undefined') { + t.plural_function = function (n) { + var p = (n != 1) ? 1 : 0; + return { 'nplural' : 2, 'plural' : p }; + }; + + /** + * code below has been taken from jsgettext - which is LGPL licensed + * https://developer.berlios.de/projects/jsgettext/ + * http://cvs.berlios.de/cgi-bin/viewcvs.cgi/jsgettext/jsgettext/lib/Gettext.js + */ + var pf_re = new RegExp('^(\\s*nplurals\\s*=\\s*[0-9]+\\s*;\\s*plural\\s*=\\s*(?:\\s|[-\\?\\|&=!<>+*/%:;a-zA-Z0-9_\(\)])+)', 'm'); + if (pf_re.test(t.plural_form)) { + //ex english: "Plural-Forms: nplurals=2; plural=(n != 1);\n" + //pf = "nplurals=2; plural=(n != 1);"; + //ex russian: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10< =4 && (n%100<10 or n%100>=20) ? 1 : 2) + //pf = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"; + var pf = t.plural_form; + if (! /;\s*$/.test(pf)) pf = pf.concat(';'); + /* We used to use eval, but it seems IE has issues with it. + * We now use "new Function", though it carries a slightly + * bigger performance hit. + var code = 'function (n) { var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) }; };'; + Gettext._locale_data[domain].head.plural_func = eval("("+code+")"); + */ + var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };'; + t.plural_function = new Function("n", code); + } else { + console.log("Syntax error in language file. Plural-Forms header is invalid ["+plural_forms+"]"); + } + } +} /** * translate a string * @param app the id of the app for which to translate the string @@ -33,21 +82,7 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == * @return string */ function t(app, text, vars, count){ - if( !( t.cache[app] )) { - $.ajax(OC.filePath('core','ajax','translations.php'),{ - async:false,//todo a proper sollution for this without sync ajax calls - data:{'app': app}, - type:'POST', - success:function(jsondata){ - t.cache[app] = jsondata.data; - } - }); - - // Bad answer ... - if( !( t.cache[app] )){ - t.cache[app] = []; - } - } + initL10N(app); var _build = function (text, vars, count) { return text.replace(/%n/g, count).replace(/{([^{}]*)}/g, function (a, b) { @@ -67,7 +102,7 @@ function t(app, text, vars, count){ return translation; } } -t.cache={}; +t.cache = {}; /** * translate a string @@ -78,7 +113,17 @@ t.cache={}; * @param vars (optional) FIXME * @return string */ -function n(app, text_singular, text_plural, count, vars){ +function n(app, text_singular, text_plural, count, vars) { + initL10N(app); + var identifier = '_' + text_singular + '__' + text_plural + '_'; + if( typeof( t.cache[app][identifier] ) !== 'undefined' ){ + var translation = t.cache[app][identifier]; + if ($.isArray(translation)) { + var plural = t.plural_function(count); + return t(app, translation[plural.plural], vars, count); + } + } + if(count === 1) { return t(app, text_singular, vars, count); } -- GitLab From 74a264e82e86449c696b413d760c61d8f41b587c Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Sat, 3 Aug 2013 18:47:27 -0400 Subject: [PATCH 105/164] fix syntax error accidentally had ; included, and changed concatenating --- core/lostpassword/controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index de7af21c07b..20445afe3fe 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -58,7 +58,7 @@ class OC_Core_LostPassword_Controller { $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); try { $defaults = new OC_Defaults(); - OC_Mail::send($email, $_POST['user'], $l->t($defaults->getTitle(); . ' password reset'), $msg, $from, $defaults->getName()); + OC_Mail::send($email, $_POST['user'], $l->t('%s password reset', array($defaults->getTitle())), $msg, $from, $defaults->getName()); } catch (Exception $e) { OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.'); } -- GitLab From e03d9e3aa07300aaee5ccad0d8e2b5352d107aee Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 4 Aug 2013 02:48:00 +0200 Subject: [PATCH 106/164] Port log level filtering from OC_Log_Owncloud to OC_Log_Syslog. --- lib/log/syslog.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/log/syslog.php b/lib/log/syslog.php index d1fb28d8b0a..a28255ed10e 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -31,7 +31,10 @@ class OC_Log_Syslog { * @param int level */ public static function write($app, $message, $level) { - $syslog_level = self::$levels[$level]; - syslog($syslog_level, '{'.$app.'} '.$message); + $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); + if ($level >= $minLevel) { + $syslog_level = self::$levels[$level]; + syslog($syslog_level, '{'.$app.'} '.$message); + } } } -- GitLab From 9923fe655bf32a2551ac0f1fd863a6a50af20157 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 4 Aug 2013 02:01:28 -0400 Subject: [PATCH 107/164] [tx-robot] updated from transifex --- apps/files_encryption/l10n/cs_CZ.php | 1 + apps/files_encryption/l10n/pt_BR.php | 1 + apps/files_versions/l10n/ja_JP.php | 3 ++ apps/user_webdavauth/l10n/ja_JP.php | 4 ++- core/l10n/cs_CZ.php | 2 +- l10n/af_ZA/core.po | 30 +++++++++--------- l10n/af_ZA/files_sharing.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/af_ZA/settings.po | 4 +-- l10n/af_ZA/user_ldap.po | 4 +-- l10n/ar/core.po | 30 +++++++++--------- l10n/ar/files_sharing.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 30 +++++++++--------- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 30 +++++++++--------- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/ca/core.po | 30 +++++++++--------- l10n/ca/files_sharing.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 35 +++++++++++---------- l10n/cs_CZ/files_encryption.po | 9 +++--- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 30 +++++++++--------- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 30 +++++++++--------- l10n/da/files_sharing.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 30 +++++++++--------- l10n/de/files_sharing.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 30 +++++++++--------- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 30 +++++++++--------- l10n/el/files_sharing.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/core.po | 46 ++++++++++++++-------------- l10n/en@pirate/files_sharing.po | 4 +-- l10n/en@pirate/settings.po | 4 +-- l10n/en@pirate/user_ldap.po | 4 +-- l10n/eo/core.po | 30 +++++++++--------- l10n/eo/files_sharing.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 30 +++++++++--------- l10n/es/files_sharing.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 30 +++++++++--------- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 30 +++++++++--------- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 30 +++++++++--------- l10n/eu/files_sharing.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 30 +++++++++--------- l10n/fa/files_sharing.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 30 +++++++++--------- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 30 +++++++++--------- l10n/fr/files_sharing.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 30 +++++++++--------- l10n/gl/files_sharing.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 30 +++++++++--------- l10n/he/files_sharing.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 30 +++++++++--------- l10n/hi/files_sharing.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hi/settings.po | 4 +-- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 30 +++++++++--------- l10n/hr/files_sharing.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 30 +++++++++--------- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/ia/core.po | 30 +++++++++--------- l10n/ia/files_sharing.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 30 +++++++++--------- l10n/id/files_sharing.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 30 +++++++++--------- l10n/is/files_sharing.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 30 +++++++++--------- l10n/it/files_sharing.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 30 +++++++++--------- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_versions.po | 13 ++++---- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 26 ++++++++-------- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ja_JP/user_webdavauth.po | 11 ++++--- l10n/ka/core.po | 30 +++++++++--------- l10n/ka/files_sharing.po | 4 +-- l10n/ka/lib.po | 4 +-- l10n/ka/settings.po | 4 +-- l10n/ka/user_ldap.po | 4 +-- l10n/ka_GE/core.po | 30 +++++++++--------- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 30 +++++++++--------- l10n/ko/files_sharing.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 30 +++++++++--------- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 30 +++++++++--------- l10n/lb/files_sharing.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 30 +++++++++--------- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 30 +++++++++--------- l10n/lv/files_sharing.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 30 +++++++++--------- l10n/mk/files_sharing.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 30 +++++++++--------- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 30 +++++++++--------- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/my_MM/settings.po | 4 +-- l10n/my_MM/user_ldap.po | 4 +-- l10n/nb_NO/core.po | 30 +++++++++--------- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 30 +++++++++--------- l10n/nl/files_sharing.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 30 +++++++++--------- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 30 +++++++++--------- l10n/oc/files_sharing.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 30 +++++++++--------- l10n/pl/files_sharing.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 30 +++++++++--------- l10n/pt_BR/files_encryption.po | 8 ++--- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 30 +++++++++--------- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 30 +++++++++--------- l10n/ro/files_sharing.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 30 +++++++++--------- l10n/ru/files_sharing.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 30 +++++++++--------- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 30 +++++++++--------- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 30 +++++++++--------- l10n/sl/files_sharing.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 30 +++++++++--------- l10n/sq/files_sharing.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 30 +++++++++--------- l10n/sr/files_sharing.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 30 +++++++++--------- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sr@latin/user_ldap.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 30 +++++++++--------- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 30 +++++++++--------- l10n/te/files_sharing.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 30 +++++++++--------- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 30 +++++++++--------- l10n/tr/files_sharing.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 30 +++++++++--------- l10n/ug/files_sharing.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 30 +++++++++--------- l10n/uk/files_sharing.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 30 +++++++++--------- l10n/ur_PK/files_sharing.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 30 +++++++++--------- l10n/vi/files_sharing.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 30 +++++++++--------- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 30 +++++++++--------- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 30 +++++++++--------- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- settings/l10n/ja_JP.php | 10 ++++++ 360 files changed, 1610 insertions(+), 1589 deletions(-) diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 7b2ce2d65c5..4dd06280d87 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno zvně systému ownCloud (např. ve vašem firemním adresáři). Můžete opravit vaše heslo soukromého klíče ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována.", +"Following users are not set up for encryption:" => "Následující uživatelé nejsou připraveni k zakódování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", "You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 1563243c993..3404ce4a542 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos em falta.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", +"Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index d8a99c4980d..8846d58e499 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,5 +1,8 @@ "元に戻せませんでした: %s", "Versions" => "バージョン", +"Failed to revert {file} to revision {timestamp}." => "{file} を {timestamp} のリヴィジョンに戻すことができません。", +"More versions..." => "もっと他のバージョン...", +"No other versions available" => "利用可能な他のバージョンはありません", "Restore" => "復元" ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 047bb148335..6dbbc8ce856 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,3 +1,5 @@ "WebDAV 認証" +"WebDAV Authentication" => "WebDAV 認証", +"Address: " => "アドレス:", +"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." => "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 1f7d4370d28..8974840994a 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -91,7 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", "You will receive a link to reset your password via Email." => "E-mailem Vám bude zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", -"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", +"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", "Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit mé heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index f310e68c566..9172c1dafcd 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 3bdda434283..a51530f213f 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index c77f882d7b4..6d1d757e277 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index bf413a90395..64a38fbef8a 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 233404f30fc..1d1d4695a71 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 07652940cf2..7fb684e2570 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "كانون الاول" msgid "Settings" msgstr "إعدادات" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "اليوم" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 34d8af4fdc5..c50d07e6b7a 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 60c4df45eb8..145239687f0 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 38f425ffe30..ae94f10fb36 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 34874b79943..dea73584f4e 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 36a36158458..97e0522b4b1 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Настройки" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "днес" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "последният месец" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "последната година" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 88a230e9868..e65aa2dab5c 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 13a54296f95..468be09e1a3 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 862c9dce4ca..35ea92f04d0 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 9895f4aa475..aa39d255b03 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 408ffa0ef18..3f45e338fe7 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "আজ" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "গত মাস" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "গত বছর" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index e16292014d2..4f1f1e4f233 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 9b7083e5742..2dc3f5e31f4 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 26adca72d8e..88489c1aefb 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 72447d825b1..5fe4d57ad45 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 59973b4c649..45151e69e6c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Configuració" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "avui" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ahir" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes passat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "l'any passat" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 116523992a2..43608233054 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 6f79f8dd10b..375cbe8cb50 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 73bc843ac09..2a233c21833 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 4002118c40a..3e800ac6559 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 258670029d0..753949b2100 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,15 +4,16 @@ # # Translators: # Honza K. , 2013 +# Martin , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 18:00+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"Last-Translator: Martin \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" @@ -144,55 +145,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včera" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "před měsíci" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "před lety" @@ -414,7 +415,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 22f7b62bf9b..eedc7bbdb21 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# Martin , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-03 23:30+0000\n" +"Last-Translator: Martin \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" @@ -76,7 +77,7 @@ msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nai #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Následující uživatelé nejsou připraveni k zakódování:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 4e1ae51035f..cbf65e02fbf 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 18:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 3a5a4622653..b08c1e51166 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 19:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7fb0e844a29..a2a10712808 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 20:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 0e9b72d3e82..4d59267bf10 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index fdf6b56cf73..10570bb3a98 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Rhagfyr" msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "heddiw" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ddoe" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "y llynedd" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c9edfb2a4b9..36b441fb9a6 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 580ccc29020..3a0c1d26921 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 25820b1996d..51945aaba68 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index d71262f1e3b..1ba76b9843b 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index a1a9cdeb1cc..d69592d284c 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -144,55 +144,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "sidste måned" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "sidste år" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 7ebea150ec0..6e390fdcb36 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index aefbe042176..2f0661d9448 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index da7be3d4cb6..f7dd400e80b 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 17:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 123e7bf0072..e9b0f6b6c09 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 16:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index be3e99d64e9..7f2bc3ce5f4 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f1873491426..5984d3c31d9 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 21052b6f836..109207a62fc 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index ecc5a27ab04..00536ea92f5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 849befa1d91..a845eb3066f 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 620585599ac..dd51b3b8a6c 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -147,55 +147,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 1f56b59086b..c9d6f21c1a6 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 484c8ff3ab1..9e998d3694f 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 155dac105d6..374f7c904af 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index c5b9e86c3ad..09a76572646 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7269021fb85..35365a40c50 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -148,55 +148,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "σήμερα" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "χτες" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 69db46394c1..de0401891f7 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index d323798d0e1..bb7c7370a71 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d2ce7114598..30c072d4c4d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 9b8fe33a4b4..cfdde9bef57 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index c4982d78198..a58c1135ed9 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -347,23 +347,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -462,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 0c43f6a0511..e1ab35afffd 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 878079dfda3..79163dfbd84 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 8c4039b04d8..3f36998584c 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3cdd5ac74b3..5d4bafb72e3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hodiaŭ" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "lastamonate" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "lastajare" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index c66399b2a68..df90223eb61 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 72bd41c4505..3fd499750c1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b682094171e..28fc2ebbc59 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 68d47eba35a..27bae0873ee 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index f121edd4a2c..48669cf204d 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -149,55 +149,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "hace meses" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 08305cb687f..383bd74c393 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 16:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 1c79d179b6e..0ac1ec2a976 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index b480ded9338..5b984e3f55b 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 18:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 4dec487073e..27fe83e9fa7 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 94bf3047000..6000db04ff2 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "diciembre" msgid "Settings" msgstr "Configuración" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "hace {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 3c16c141148..bbe39b87e55 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 06e8c040a64..97230b87fe8 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9f2565ee635..7ab3a92fc17 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 82d48a7e1ba..2dc80662497 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 1a87d829d28..05f8b83ac09 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "täna" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "eile" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index fce075d2247..3c6979735ff 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 99e2c16249d..e54afea757d 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index acd28ee2527..eea3af76544 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/user_ldap.po b/l10n/et_EE/user_ldap.po index 7a5b2570f28..9a4e6f7aa13 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 1f660f06429..c81ffc06bfe 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "gaur" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "atzo" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "hilabete" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "joan den urtean" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 9629a3e4610..903a0b24aa6 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 06423f2d254..3cfce3b6f4b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 2c34f899fec..5accc90b9d7 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 002bc4dfdb9..2627732cb8d 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 9cfd8ce0849..b6e1472a3ee 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "امروز" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "دیروز" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ماه قبل" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "سال قبل" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index a7d90d416ca..77ae948e11f 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 3c8ebb5e499..a547252a6b0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index df8ab0bbd50..fd9ecf66609 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4d5bfef0de7..138ed1e8fa6 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 09db5dddc5a..65c06b520b7 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "tänään" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "eilen" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "viime kuussa" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "viime vuonna" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 6f5c0b268f5..e78e822651e 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e84f005d6a5..ba476ca2d4f 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1658f4d7d06..e80ac811fb2 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8dbf5fe8945..358ee7001d7 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 5ea8804ed83..57e4125227c 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -146,55 +146,55 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "aujourd'hui" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hier" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "le mois dernier" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "l'année dernière" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 4c41bc8d54c..f89822b341b 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 1bd46de75e0..a16420a728b 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 8e95507a948..371ea390737 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index bcfe7e3e19d..52e8f7e72e8 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6ad071c4017..f1181958316 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -142,55 +142,55 @@ msgstr "decembro" msgid "Settings" msgstr "Axustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoxe" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "onte" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "último mes" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 23b10c46bbc..ff946e4f69b 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 09:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index f3fe2b82a13..e166c0d1ada 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 49fcaffcd5e..45fbad90132 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 37342000f69..06ecfaeb682 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index e67ba8ad751..4c5600aa55b 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "שניות" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "היום" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "אתמול" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "חודשים" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index aa4b887ee24..9f1ce229c78 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 2830a8eab81..3596f6929c0 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1af965a0963..0ecf0382d42 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index f8685835767..92412a3acf2 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 4a16892033f..da414f326bf 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "दिसम्बर" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index d2f33421d86..1b0fd22ba82 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index ab9714261e9..82f9745909e 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index f522a760cf6..1cbce126524 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index cc861519d23..dba9ae3b02f 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 3a61a6b8642..beaf2aeae5c 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "danas" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "jučer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mjeseci" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 3b41ad7c0f2..1accb3a66a3 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index c866a1a2028..04da1356f08 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index b7d80dba4fe..f49d42a60a2 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 74a0ad121a7..724cb66407c 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ce7f4a8f031..07535df580c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ma" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "tegnap" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "több hónapja" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "tavaly" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0d018aba9bb..d5cd26bf878 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f103a4224dc..40fca00f72d 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 55cb8bceb36..7de382a917c 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 19:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 28f951cefba..a3a8d807eb2 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a552d39009c..16f83c98df6 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 940bd354de5..68d91a29914 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 6e47ee9dae0..5a15ebc1e9c 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index d13f934dd37..b490b5b0547 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 901092e5e3c..8dd885a0628 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 092d01d17e0..a373e078940 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hari ini" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "kemarin" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 793bcb2e756..7130233a662 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 1866b3b7985..808d582a7d0 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index edfbd936385..8ab6e79e373 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index da1981e766d..acb31ed65e1 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index a02b8f3fae1..9fe09adf63d 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sek." -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "í dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "í gær" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "síðasta ári" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index e01d766773c..3db22086b2f 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4df8009d677..32295e15e8f 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index c9bd7610fa6..a839a7a0702 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 7c34f34cd0c..be713f10c07 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 7980040fb44..abaf413f682 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -144,55 +144,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "oggi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mese scorso" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesi fa" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "anno scorso" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 784e96175f3..217df783810 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 8562c1b2dff..ef7fe07c142 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 5180fdb53f5..ec7d9612473 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index e42ed7790d5..b71bd28689d 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 1b26070dc65..feeca3cbaf1 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今日" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨日" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "一月前" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "一年前" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 73d3652d5af..4980cae8889 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 685cc2abee3..a160c897a2a 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "バージョン" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "{file} を {timestamp} のリヴィジョンに戻すことができません。" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "もっと他のバージョン..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "利用可能な他のバージョンはありません" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 63e44f14693..3946f049c5a 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b539811238b..c1e900940cf 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -183,7 +183,7 @@ msgid "" "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 "" +msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" #: templates/admin.php:29 msgid "Setup Warning" @@ -198,7 +198,7 @@ msgstr "WebDAVインタフェースが動作していないと考えられるた #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "installation guidesをもう一度チェックするようにお願いいたします。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -220,7 +220,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -233,7 +233,7 @@ msgid "" "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 "" +msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" #: templates/admin.php:92 msgid "Cron" @@ -247,11 +247,11 @@ msgstr "各ページの読み込み時にタスクを実行する" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。" #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。" #: templates/admin.php:128 msgid "Sharing" @@ -275,12 +275,12 @@ msgstr "リンクによりアイテムを公開することを許可する" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "パブリックなアップロードを許可" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" #: templates/admin.php:160 msgid "Allow resharing" @@ -309,14 +309,14 @@ msgstr "常にHTTPSを使用する" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "クライアントから %sへの接続を常に暗号化する。" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" #: templates/admin.php:211 msgid "Log" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 1c8c1b407c6..cdb3a32b0bf 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 504eff3ee09..c24eb2a95de 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -6,13 +6,14 @@ # Daisuke Deguchi , 2012 # Daisuke Deguchi , 2012-2013 # plazmism , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +27,11 @@ msgstr "WebDAV 認証" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "アドレス:" #: templates/settings.php:7 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 "" +msgstr "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 7bfb35fbc74..a6e96b91fef 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "დღეს" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index d03fb2074c5..c66af7f1368 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index be614d19be4..9c181af82e1 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 6408e9c0650..82c0600bc84 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index f2b7389faa3..2ed240f9a6f 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index e74124b1f2b..b1be2067a36 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "დღეს" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 349d781cc97..81868d1a0ef 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 90083f3cfd2..cbc529f5892 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 373cecbae3a..306c771ecd1 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 04c7538f51a..a0beedfcc2f 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 15b5a442595..de8a2f445db 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "초 전" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "오늘" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "어제" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "지난 달" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "개월 전" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "작년" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 98a35975c04..36a7cc9c72e 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index e94791c18e5..a603bde297f 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index d2fb6add9cc..fb077e66db2 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index ad8ee3ed2a6..547021c9105 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 7a4da675640..2c8de7bc54c 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index b7314e7946c..d4546d92d4f 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 9274ba255a6..84017f953cd 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 61f66737177..7285c3da28a 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1ff61722118..7d971996c51 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 24120db9714..890293257c9 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 Minutt hir" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "virun {minutes} Minutten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "virun 1 Stonn" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "virun {hours} Stonnen" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "haut" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "gëschter" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "virun {days} Deeg" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "leschte Mount" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "virun {months} Méint" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Méint hir" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Joren hir" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 1b02b6939f2..b99907df262 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 3a82a7edf77..ede1c573d7c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 35610d9727d..0a6840bf298 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index b67486d75b3..ff308c5e0e5 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 0ff3d16d683..a6e89dddd3d 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "šiandien" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "praeitais metais" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index ac8a3687549..924cfe1f38b 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 352a441e3c3..a3da13549d0 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 60dc7deb39f..b4c89313258 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index cc4485baa5d..254827f3a86 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 4ee5542d592..40c38fda754 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "šodien" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 8a2763ec51c..a920f0276d2 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5c952891c4c..276da094bc7 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 46c574e7af6..a12f48a2b56 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 2bd8f6842d9..556a293a7c3 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 3dc2cdcab4a..b16e146c113 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Подесувања" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "денеска" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "минатиот месец" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "пред месеци" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "минатата година" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index ac0efb09ea1..b7d397e48dd 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index dbe4359e4cf..d874bda2e51 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0018282afe6..e11d8a822c7 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index b85bbf1e565..d1883cd979a 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 2c377e673df..cd60d15f453 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index ca3a8ca1f2e..5b81ab15ac4 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 7e64969eb06..1c115a03272 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index ef2595222e4..9947d57cbed 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index ac60e6d8b99..351df3db37f 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 3b725afd1b7..70b6fef3f67 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ယနေ့" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 640fd07c17a..77271613070 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index cd8ea13538f..2dc174649a1 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 4eda2c15beb..903834397b0 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 1d0a51d4a3e..f9f369565af 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index d65bf7c1684..e6c777862c9 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "forrige måned" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "forrige år" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index ed32d42f6c8..ffdb64e6069 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 71ab9aec2b5..9ddd3f5c576 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index feb3576e2d9..b5762962ac4 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index c4942645d36..853b63433cf 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2041e32605d..e1de8e6f857 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "vandaag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "gisteren" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "vorige maand" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "vorig jaar" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 8223ec70b18..6b1ff940263 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 242adb3fe13..cdb43a7072a 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a2ed8c51e68..cdd7df2f875 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 1fbf3553a88..a0aed2817dd 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 181d16dc839..78ca5c6dadc 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "førre månad" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "i fjor" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 8ae98be0ca3..03c071a0dde 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 72832d20138..bcd30436ade 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index aeaadb95a3c..0754a6783ce 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index b70768d7dea..5a412930089 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 309f87a7094..feeec482783 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "uèi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ièr" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mes passat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses a" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "an passat" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index d8f6bb9a866..b8303b01f1e 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 758bf58b230..95eaa629e86 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index ad508f90683..e0d324ca4b2 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index a28bd120b8f..e247b034647 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index a5822793cf7..0c61635fb86 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dziś" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index f49a08df8a7..dc022a82a21 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e90fe749bcf..54c16bb62d7 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 61dd2280e51..aa11a574cc3 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index dcd7013f692..59a900ea6cf 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 35b7103dc3d..ef824855876 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "dezembro" msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "último mês" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 486433e9b14..bebc61f2fb9 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:20+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" @@ -76,7 +76,7 @@ msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Seguintes usuários não estão configurados para criptografia:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index d382f7570bb..7b872797049 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b5dc7ad4e4b..63261adbfd8 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 08e1098056d..9de3873ade2 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 12:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index ddc3d7e66e8..34ce87b54d4 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 42c0929b117..abba963f8b2 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -145,55 +145,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ultímo mês" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ano passado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 6cb410e6e19..468e3d08848 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 1a3939583ae..df6290845f8 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 341c7e882f2..ce430296f24 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 11:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 48979e5e805..4fbf0d1bc24 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1537c13dd9d..888968365ec 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -145,55 +145,55 @@ msgstr "Decembrie" msgid "Settings" msgstr "Setări" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urmă" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Acum o oră" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "astăzi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} zile in urmă" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ultima lună" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ultimul an" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 49b2267a3fc..29f0f95e2d7 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index c2f89f171de..42f5f30ea38 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index eeb631665ce..a54dd4e9522 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index f56facba0db..678d29975a3 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index bb252af7226..f94be423de9 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 17:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Конфигурация" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "сегодня" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "в прошлом году" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 16ded2bfe6d..698ff11358f 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 17:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 2aab4fee2d3..5280cba75ed 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index a4d1e3ae371..0a648270bda 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 11:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 7558860d48e..cdd1f344bff 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d891de93082..13b71cf063b 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "අද" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index fb8e0b2e446..4eabc2ac666 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 6b8ff4aca15..59d4f49d1ff 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 83a432ea146..2dd2b455958 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 6ef80e04cb6..a1f7b850787 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 2b3692aad67..5df52e2878d 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včera" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index a904512e69a..988e0889292 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 0d18fe39651..aa82aa3ee29 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index b441612eae9..f2f4836cac5 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index e1b6bb618fa..856ca50856b 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 55df77f349a..d0c6971b5f9 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "danes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včeraj" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "lansko leto" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 7df04bc1739..baea63065ae 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 0aa12d196e3..ce4d7021090 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index c79736efdaf..1f3e9e7bbff 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 89e0f265217..d0c3f5765d9 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 2c882917c04..64a19a9f10f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 23:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametra" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "sot" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "dje" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 1dce2e65bc6..3599e09b985 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 6c1b4ba5b53..2a56dcbd7fb 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 7591212a54e..975c838ad78 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index b1fcde92cd8..2ed99287af3 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 462d4016e29..48259183d3b 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Децембар" msgid "Settings" msgstr "Поставке" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "данас" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "јуче" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "месеци раније" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "прошле године" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 93140c09421..2f7332e85c0 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index e5b62d888b5..3f9b8db253a 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 785e8f1cb81..f1ba85f6d52 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 4e15ea5bd44..31f3cbf8af4 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7657df7e8ae..49ce87eb10f 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 62dd8a318bf..0d103e93864 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9ec9e7fac65..2218d64277c 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 473e8b4f089..95200220f7d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 2b5d1f15a87..cab46e6a8dd 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 5ba113d3c75..f141fb768eb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index e8c04f5f3d9..707b478f94e 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 414bb524158..e889ebc259e 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f765a1c04f4..303881a972b 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index e379fcecef0..28b7941b8e7 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 57b84bb5dcb..67e28fc37ee 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "இன்று" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 7c8041c6cc9..4880d98b43e 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 3aac60962c9..bf7c398a455 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 17f5009f77b..e0551bda04e 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 2e0ab2843a5..dbf4b8ed81f 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 0678e40d64b..918b7289fa7 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ఈరోజు" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 3b3743c9758..ed863a3da31 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 7d9db7511f5..370f405c284 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 7eb9f85c79c..efbf9806a17 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index cf534a3c9b3..6e7b216db1a 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 34c057e60ea..01e2b671bf9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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.pot b/l10n/templates/files.pot index e246ef91b15..283b962a170 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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_encryption.pot b/l10n/templates/files_encryption.pot index 910a360b103..ce75f89ceeb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 aafb20f57d4..b92d0599f48 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 e99ea89aca3..5640ea739a4 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 454a43fae7f..64bf4b543d1 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 d2995c94a39..cfdc502ad6a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 e0a2511e1ce..2a73cba6674 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 70e56ee8947..37bf47748e1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 9fdcbc5a290..142948b6a97 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 95e6a6ad41e..f8ea3cc89de 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-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 63ae34e1a7f..06a3412e2a4 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "วันนี้" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 8699fb38403..1e6b0998b02 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index c8a3eecf404..314f740f6bd 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 635e9f94711..5d3eb1828bd 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index bdaa8548717..2e5cecd0649 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 5f98732ac0b..7164783ff8d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "bugün" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "dün" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "geçen ay" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "ay önce" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "geçen yıl" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 498486086d1..3c854435244 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 31eca3fff5a..8b7f4d190fe 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f11f04b70eb..0d0d1f3f7a8 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index b92f0ef35ee..a86abc49294 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 9a6950f93cd..1cd2900cda9 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "كۆنەك" msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "بۈگۈن" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index af6816a97b6..97bd1eb5b71 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 8cfb7be3243..018931a3d7b 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 7743eec0595..d8a8331649f 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index f1f2c40e5c6..49daddeb2a5 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index e0d6c3e1235..97c36a73437 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "сьогодні" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчора" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "минулого місяця" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "місяці тому" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "минулого року" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 8b42f1750c9..a44d48e4b03 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ef6c69e342d..89913155b89 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 6d73628bd52..305f6e4bfff 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 9c8fb92aee5..fac9e7b6da0 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6028892d2ab..601d15beb1e 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index bdb1bd4bf05..6880222c4ce 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index b6fb2fe2457..4347d7f1fa8 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 72bc49405e5..3eef889f525 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 68f284014e7..9b9987041e1 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 10cc9911235..e4c1b0b1c40 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hôm nay" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "tháng trước" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "tháng trước" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "năm trước" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 790f1962b02..4c5fff60a89 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index a36030ee8e5..8caf92f1aa9 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 10d18571889..cce44da5fef 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index f9e4d85ee66..8de7ed160e0 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 7828ac9a31e..bedd18c3cb0 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 12:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 8ee0a2a54c5..8e31402793e 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index e948c4e0210..c540254d9e2 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 092a305f344..10f058e4192 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 12:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index ce8958d3f6f..2bc58acb884 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index fed020d0c90..6b64060f1e1 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index e8e975b5a5f..a07f1801cfa 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 8c8e37a86ca..880725f9d90 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 954789e09a9..19f7e072000 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 18f7612955f..795269be235 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 8313b4096d2..52055ca3cc4 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今日" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨日" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "前一月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "個月之前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 2ef6877052c..551e3adda0a 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index a479e199122..a8ac7fdbd81 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 282acfbd736..63950a02dec 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 6f2ed6501b3..d72c1e0b0d9 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 44c5ff8811c..0979fce2724 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上個月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "幾個月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 265c05f1099..280428331a2 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 7b06ffdf18f..adb5dfb4f95 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d3be39b8edd..c816bcc347c 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 51ad7117fb8..06d5cc0639a 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index f30331038b6..7d327ebc243 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -37,25 +37,35 @@ "A valid password must be provided" => "有効なパスワードを指定する必要があります", "__language_name__" => "Japanese (日本語)", "Security Warning" => "セキュリティ警告", +"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." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", "Setup Warning" => "セットアップ警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", +"Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", "Locale not working" => "ロケールが動作していません", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "システムロケールが %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." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", "Cron" => "Cron", "Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。", +"Use systems cron service to call the cron.php file once a minute." => "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。", "Sharing" => "共有", "Enable Share API" => "共有APIを有効にする", "Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", "Allow links" => "リンクを許可する", "Allow users to share items to the public with links" => "リンクによりアイテムを公開することを許可する", +"Allow public uploads" => "パブリックなアップロードを許可", +"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダへのアップロードを共有しているメンバーにも許可", "Allow resharing" => "再共有を許可する", "Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する", "Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", +"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." => "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。", "Log" => "ログ", "Log level" => "ログレベル", "More" => "もっと見る", -- GitLab From b716d035c32f5b04bfc398598ddf687a19a21c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 22:58:40 +0200 Subject: [PATCH 108/164] fixing PHPDoc --- lib/log/syslog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/log/syslog.php b/lib/log/syslog.php index a28255ed10e..c98deab7109 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -28,7 +28,7 @@ class OC_Log_Syslog { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); -- GitLab From ad952f215d18f3f06ac54118ee55eb4f2d5da777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 23:13:19 +0200 Subject: [PATCH 109/164] add 'logdateformat' to config.sample.php --- config/config.sample.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 8d978ea6ee7..75c600a7c3e 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -185,5 +185,8 @@ $CONFIG = array( //links to custom clients 'customclient_desktop' => '', //http://owncloud.org/sync-clients/ 'customclient_android' => '', //https://play.google.com/store/apps/details?id=com.owncloud.android -'customclient_ios' => '' //https://itunes.apple.com/us/app/owncloud/id543672169?mt=8 +'customclient_ios' => '', //https://itunes.apple.com/us/app/owncloud/id543672169?mt=8 + +// date format to be used while writing to the owncloud logfile +'logdateformat' => 'F d, Y H:i:s' ); -- GitLab From 33d78ab9c719ac0677651cfe76bf6a2aa3073241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 23:13:34 +0200 Subject: [PATCH 110/164] fixing PHPDoc --- lib/log/owncloud.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index e7246726d40..d16b9537a16 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -44,7 +44,7 @@ class OC_Log_Owncloud { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); @@ -63,8 +63,8 @@ class OC_Log_Owncloud { /** * get entries from the log in reverse chronological order - * @param int limit - * @param int offset + * @param int $limit + * @param int $offset * @return array */ public static function getEntries($limit=50, $offset=0) { -- GitLab From 19e3780ef24113bcb7950b5671e4c0149271c5c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 5 Aug 2013 10:21:51 +0200 Subject: [PATCH 111/164] remove unneeded vars from unit test --- tests/lib/l10n.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index 846a2f22c8e..dfc5790c2e7 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -13,8 +13,8 @@ class Test_L10n extends PHPUnit_Framework_TestCase { $transFile = OC::$SERVERROOT.'/tests/data/l10n/de.php'; $l->load($transFile); - $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1, array(1))); - $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2, array(2))); + $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1)); + $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2)); } public function testRussianPluralTranslations() { -- GitLab From 464afb5ecac95124c55b6a8af38410732a76275c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 5 Aug 2013 13:51:45 +0200 Subject: [PATCH 112/164] use isset to prevent undefined index --- lib/files/cache/scanner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index dd212d84cc5..adecc2bb901 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -98,7 +98,7 @@ class Scanner extends BasicEmitter { $newData = $data; if ($reuseExisting and $cacheData = $this->cache->get($file)) { // only reuse data if the file hasn't explicitly changed - if ($data['mtime'] === $cacheData['mtime']) { + if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) { if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) { $data['size'] = $cacheData['size']; } -- GitLab From 0fce89308e2fbcb44a2091ca67f373ba89ee068e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 5 Aug 2013 07:54:38 -0400 Subject: [PATCH 113/164] [tx-robot] updated from transifex --- apps/files_encryption/l10n/de.php | 1 + apps/user_webdavauth/l10n/fi_FI.php | 3 ++- l10n/ar/settings.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/de/files_encryption.po | 9 +++++---- l10n/de/settings.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_webdavauth.po | 6 +++--- l10n/fr/settings.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- 66 files changed, 124 insertions(+), 121 deletions(-) diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index d8265906db5..69b15aa00a8 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", +"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", "You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", diff --git a/apps/user_webdavauth/l10n/fi_FI.php b/apps/user_webdavauth/l10n/fi_FI.php index 40a3a069090..ed5085f7f05 100644 --- a/apps/user_webdavauth/l10n/fi_FI.php +++ b/apps/user_webdavauth/l10n/fi_FI.php @@ -1,4 +1,5 @@ "WebDAV-todennus", -"Address: " => "Osoite:" +"Address: " => "Osoite:", +"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." => "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." ); diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ae94f10fb36..33845793c7d 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 35ea92f04d0..c400409cb19 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 2a233c21833..7c7dd8f5c20 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a2a10712808..da8c0b6502e 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index f7dd400e80b..c56fa461d3b 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 96854973d22..2162f985814 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -7,14 +7,15 @@ # Stephan Köninger , 2013 # ninov , 2013 # Pwnicorn , 2013 +# thillux, 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-04 18:40+0000\n" +"Last-Translator: thillux\n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +80,7 @@ msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 00536ea92f5..73764b744ad 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 374f7c904af..4d2788b68e1 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 30c072d4c4d..0ac7c75c24d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 28fc2ebbc59..693963c2826 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5b984e3f55b..9f8ce5e7e26 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 7ab3a92fc17..32f1d08a5a5 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11: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" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index eea3af76544..71801ca7408 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 5accc90b9d7..1bcb0d13906 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index fd9ecf66609..6c0c4eb1e48 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e80ac811fb2..381015dd21e 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index d12fc9eddf3..ca7c9cc8f3b 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:00+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:20+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" @@ -31,4 +31,4 @@ 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 "" +msgstr "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 371ea390737..a17f6cb3300 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 45fbad90132..4003cde32ba 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0ecf0382d42..468f47334f6 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index f49d42a60a2..e3c59e31c93 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 7de382a917c..28ad2b6ab17 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 8ab6e79e373..d3e8034ef13 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index a839a7a0702..85dc87ad7d9 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index ec7d9612473..11753861f8b 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c1e900940cf..d7754992c93 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 306c771ecd1..9d20dea82bd 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index fb077e66db2..43a6a722423 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 0a6840bf298..b2aaad004c4 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index b4c89313258..239d969d0fe 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index a12f48a2b56..0b9ff593b02 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 9947d57cbed..0504ad67a59 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index b5762962ac4..4240547121a 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index cdd7df2f875..69ba192c0e4 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 0754a6783ce..b3df4c9a0b7 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e0d324ca4b2..37881368c6c 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index aa11a574cc3..2771def0e4c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 9de3873ade2..a14d1d4ac35 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ce430296f24..8c05bf433ca 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a54dd4e9522..c26932adf90 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 0a648270bda..4879d2b0d4a 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index f2f4836cac5..b72f378e141 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1f3e9e7bbff..71dd13c7f03 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f1ba85f6d52..d4b836e8a1a 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 303881a972b..916754ad16b 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 01e2b671bf9..db8f2b38885 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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.pot b/l10n/templates/files.pot index 283b962a170..aa5dffefa13 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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_encryption.pot b/l10n/templates/files_encryption.pot index ce75f89ceeb..0ac83fd87a1 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 b92d0599f48..b88ddd25008 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 5640ea739a4..4567e455d16 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 64bf4b543d1..792ddf2bc77 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 cfdc502ad6a..9bd404365d1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 2a73cba6674..1d115ab6007 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 37bf47748e1..118417261f7 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 142948b6a97..e4570600530 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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 f8ea3cc89de..7ee42ea4f8f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-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/settings.po b/l10n/th_TH/settings.po index 5d3eb1828bd..749b6eeee0a 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 0d0d1f3f7a8..f17b1b51c64 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index d8a8331649f..49e5d53ddbe 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 305f6e4bfff..7bbf6078110 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index cce44da5fef..55da60efbb8 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 10f058e4192..be3894e160f 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 19f7e072000..4a2a1d76d89 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index c816bcc347c..c7b6216ecf9 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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" -- GitLab From 2871d11b5c1148909787d9bca732dfcd1fcbfc5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 5 Aug 2013 14:03:11 +0200 Subject: [PATCH 114/164] adding executable script occ (ownCloud console) --- console.php | 4 ++-- occ | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100755 occ diff --git a/console.php b/console.php index 538837a04b4..4aec5bdc24f 100644 --- a/console.php +++ b/console.php @@ -20,9 +20,9 @@ if (!OC::$CLI) { exit(0); } -if ($argc < 1) { +if ($argc <= 1) { echo "Usage:" . PHP_EOL; - echo " php console.php " . PHP_EOL; + echo " " . basename($argv[0]) . " " . PHP_EOL; exit(0); } diff --git a/occ b/occ new file mode 100755 index 00000000000..e2b71fe4abc --- /dev/null +++ b/occ @@ -0,0 +1,11 @@ +#!/usr/bin/php + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +//$argv = $_SERVER['argv']; +require_once __DIR__ . '/console.php'; -- GitLab From a51af395952b428bfbec03e04991849049f32a5d Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 5 Aug 2013 14:47:14 +0200 Subject: [PATCH 115/164] Add unittests Unittests for: - search/result - util - preferences --- tests/lib/preferences.php | 121 ++++++++++++++++++++++++++++++++++++ tests/lib/search/result.php | 17 +++++ tests/lib/util.php | 30 +++++++++ 3 files changed, 168 insertions(+) create mode 100644 tests/lib/preferences.php create mode 100644 tests/lib/search/result.php diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php new file mode 100644 index 00000000000..d39555aa01d --- /dev/null +++ b/tests/lib/preferences.php @@ -0,0 +1,121 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Preferences extends PHPUnit_Framework_TestCase { + private function fillDb() { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*preferences` VALUES(?, ?, ?, ?)'); + $query->execute(array("Someuser", "someapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getusersapp", "somekey", "somevalue")); + $query->execute(array("Anotheruser", "getusersapp", "somekey", "someothervalue")); + $query->execute(array("Anuser", "getusersapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getappsapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getkeysapp", "firstkey", "somevalue")); + $query->execute(array("Someuser", "getkeysapp", "anotherkey", "somevalue")); + $query->execute(array("Someuser", "getkeysapp", "key-tastic", "somevalue")); + + $query->execute(array("Someuser", "getvalueapp", "key", "a value for a key")); + + $query->execute(array("Deleteuser", "deleteapp", "deletekey", "somevalue")); + $query->execute(array("Deleteuser", "deleteapp", "somekey", "somevalue")); + $query->execute(array("Deleteuser", "someapp", "somekey", "somevalue")); + } + + public function testGetUsers() { + $this->fillDb(); + + $query = \OC_DB::prepare('SELECT DISTINCT `userid` FROM `*PREFIX*preferences`'); + $result = $query->execute(); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['userid']; + } + + $this->assertEquals($expected, \OC_Preferences::getUsers()); + } + + public function testGetApps() { + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*preferences` WHERE `userid` = ?'); + $result = $query->execute(array('Someuser')); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['appid']; + } + + $this->assertEquals($expected, \OC_Preferences::getApps('Someuser')); + } + + public function testGetKeys() { + $query = \OC_DB::prepare('SELECT DISTINCT `configkey` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); + $result = $query->execute(array('Someuser', 'getkeysapp')); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['configkey']; + } + + $this->assertEquals($expected, \OC_Preferences::getKeys('Someuser', 'getkeysapp')); + } + + public function testGetValue() { + $this->assertNull(\OC_Preferences::getValue('nonexistant', 'nonexistant', 'nonexistant')); + + $this->assertEquals('default', \OC_Preferences::getValue('nonexistant', 'nonexistant', 'nonexistant', 'default')); + + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'getvalueapp', 'key')); + $row = $result->fetchRow(); + $expected = $row['configvalue']; + $this->assertEquals($expected, \OC_Preferences::getValue('Someuser', 'getvalueapp', 'key')); + } + + public function testSetValue() { + $this->assertTrue(\OC_Preferences::setValue('Someuser', 'setvalueapp', 'newkey', 'newvalue')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'setvalueapp', 'newkey')); + $row = $result->fetchRow(); + $value = $row['configvalue']; + $this->assertEquals('newvalue', $value); + + $this->assertTrue(\OC_Preferences::setValue('Someuser', 'setvalueapp', 'newkey', 'othervalue')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'setvalueapp', 'newkey')); + $row = $result->fetchRow(); + $value = $row['configvalue']; + $this->assertEquals('othervalue', $value); + } + + public function testDeleteKey() { + $this->assertTrue(\OC_Preferences::deleteKey('Deleteuser', 'deleteapp', 'deletekey')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Deleteuser', 'deleteapp', 'deletekey')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteApp() { + $this->assertTrue(\OC_Preferences::deleteApp('Deleteuser', 'deleteapp')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); + $result = $query->execute(array('Deleteuser', 'deleteapp')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteUser() { + $this->assertTrue(\OC_Preferences::deleteUser('Deleteuser')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ?'); + $result = $query->execute(array('Deleteuser')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteAppFromAllUsers() { + $this->assertTrue(\OC_Preferences::deleteAppFromAllUsers('someapp')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); + $result = $query->execute(array('someapp')); + $this->assertEquals(0, $result->numRows()); + } +} diff --git a/tests/lib/search/result.php b/tests/lib/search/result.php new file mode 100644 index 00000000000..94a7f76bd1d --- /dev/null +++ b/tests/lib/search/result.php @@ -0,0 +1,17 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Search_Result extends PHPUnit_Framework_TestCase { + public function testConstruct() { + $result = new \OC_Search_Result("name", "text", "link", "type"); + $this->assertEquals('name', $result->name); + $this->assertEquals('text', $result->text); + $this->assertEquals('link', $result->link); + $this->assertEquals('type', $result->type); + } +} diff --git a/tests/lib/util.php b/tests/lib/util.php index a038538d7ea..13aa49c8c6f 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -7,6 +7,23 @@ */ class Test_Util extends PHPUnit_Framework_TestCase { + public function testGetVersion() { + $version = \OC_Util::getVersion(); + $this->assertTrue(is_array($version)); + foreach ($version as $num) { + $this->assertTrue(is_int($num)); + } + } + + public function testGetVersionString() { + $version = \OC_Util::getVersionString(); + $this->assertTrue(is_string($version)); + } + + public function testGetEditionString() { + $edition = \OC_Util::getEditionString(); + $this->assertTrue(is_string($edition)); + } function testFormatDate() { date_default_timezone_set("UTC"); @@ -41,6 +58,19 @@ class Test_Util extends PHPUnit_Framework_TestCase { $this->assertEquals("/%C2%A7%23%40test%25%26%5E%C3%A4/-child", $result); } + public function testFileInfoLoaded() { + $expected = function_exists('finfo_open'); + $this->assertEquals($expected, \OC_Util::fileInfoLoaded()); + } + + public function testIsInternetConnectionEnabled() { + \OC_Config::setValue("has_internet_connection", false); + $this->assertFalse(\OC_Util::isInternetConnectionEnabled()); + + \OC_Config::setValue("has_internet_connection", true); + $this->assertTrue(\OC_Util::isInternetConnectionEnabled()); + } + function testGenerate_random_bytes() { $result = strlen(OC_Util::generate_random_bytes(59)); $this->assertEquals(59, $result); -- GitLab From 87ad6771515851bcfd933bf62bbf1bfd78f940f6 Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 5 Aug 2013 19:38:52 +0200 Subject: [PATCH 116/164] Remove pointless unittest (search/result) --- tests/lib/search/result.php | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 tests/lib/search/result.php diff --git a/tests/lib/search/result.php b/tests/lib/search/result.php deleted file mode 100644 index 94a7f76bd1d..00000000000 --- a/tests/lib/search/result.php +++ /dev/null @@ -1,17 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -class Test_Search_Result extends PHPUnit_Framework_TestCase { - public function testConstruct() { - $result = new \OC_Search_Result("name", "text", "link", "type"); - $this->assertEquals('name', $result->name); - $this->assertEquals('text', $result->text); - $this->assertEquals('link', $result->link); - $this->assertEquals('type', $result->type); - } -} -- GitLab From b560bb21f092c9d93172e53559db7df7bbfd8f1d Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 6 Aug 2013 17:01:01 +0200 Subject: [PATCH 117/164] Clean up DB, after we're done with testing --- tests/lib/preferences.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php index d39555aa01d..a1719c92b29 100644 --- a/tests/lib/preferences.php +++ b/tests/lib/preferences.php @@ -28,6 +28,13 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $query->execute(array("Deleteuser", "someapp", "somekey", "somevalue")); } + private function cleanDb() { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `user` = ?'); + $query->execute(array('Someuser')); + $query->execute(array('Anotheruser')); + $query->execute(array('Anuser')); + } + public function testGetUsers() { $this->fillDb(); @@ -117,5 +124,7 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); $result = $query->execute(array('someapp')); $this->assertEquals(0, $result->numRows()); + + $this->cleanDb(); } } -- GitLab From b8bfebe51e6d4c007a6dcd3fcb56e4684704af24 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 6 Aug 2013 17:26:12 +0200 Subject: [PATCH 118/164] Use setUpBeforeClass() and tearDownAfterClass() --- tests/lib/preferences.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php index a1719c92b29..18e1cde8488 100644 --- a/tests/lib/preferences.php +++ b/tests/lib/preferences.php @@ -7,7 +7,7 @@ */ class Test_Preferences extends PHPUnit_Framework_TestCase { - private function fillDb() { + public static function setUpBeforeClass() { $query = \OC_DB::prepare('INSERT INTO `*PREFIX*preferences` VALUES(?, ?, ?, ?)'); $query->execute(array("Someuser", "someapp", "somekey", "somevalue")); @@ -28,7 +28,7 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $query->execute(array("Deleteuser", "someapp", "somekey", "somevalue")); } - private function cleanDb() { + public static function tearDownAfterClass() { $query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `user` = ?'); $query->execute(array('Someuser')); $query->execute(array('Anotheruser')); @@ -36,8 +36,6 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { } public function testGetUsers() { - $this->fillDb(); - $query = \OC_DB::prepare('SELECT DISTINCT `userid` FROM `*PREFIX*preferences`'); $result = $query->execute(); $expected = array(); @@ -124,7 +122,5 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); $result = $query->execute(array('someapp')); $this->assertEquals(0, $result->numRows()); - - $this->cleanDb(); } } -- GitLab From 6c78152564b8d7a5512072867e80a50a55856714 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 6 Aug 2013 17:31:50 +0200 Subject: [PATCH 119/164] =?UTF-8?q?Proper=20WHERE=20=E2=80=93=20the=20tabl?= =?UTF-8?q?e=20is=20called=20userid=20not=20user?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/lib/preferences.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php index 18e1cde8488..612cc81926b 100644 --- a/tests/lib/preferences.php +++ b/tests/lib/preferences.php @@ -29,7 +29,7 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { } public static function tearDownAfterClass() { - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `user` = ?'); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `userid` = ?'); $query->execute(array('Someuser')); $query->execute(array('Anotheruser')); $query->execute(array('Anuser')); -- GitLab From 0deae7b86fbbcb8aaf4ada73950fd5a9b56f719f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 7 Aug 2013 09:04:32 -0400 Subject: [PATCH 120/164] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 3 + apps/files_encryption/l10n/cs_CZ.php | 24 +- apps/files_encryption/l10n/de_DE.php | 1 + apps/files_encryption/l10n/pt_BR.php | 8 +- apps/files_external/l10n/cs_CZ.php | 4 +- apps/files_sharing/l10n/cs_CZ.php | 2 +- apps/files_sharing/l10n/el.php | 7 + apps/files_trashbin/l10n/el.php | 1 + apps/files_versions/l10n/el.php | 3 + apps/user_webdavauth/l10n/el.php | 4 +- core/l10n/el.php | 4 + core/l10n/zh_TW.php | 2 + l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 31 +- l10n/cs_CZ/files_external.po | 23 +- l10n/cs_CZ/files_sharing.po | 6 +- l10n/cs_CZ/lib.po | 41 +- l10n/cs_CZ/settings.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de_AT/core.po | 629 +++++++++++++++++++++++++++ l10n/de_AT/files.po | 348 +++++++++++++++ l10n/de_AT/files_encryption.po | 176 ++++++++ l10n/de_AT/files_external.po | 123 ++++++ l10n/de_AT/files_sharing.po | 80 ++++ l10n/de_AT/files_trashbin.po | 88 ++++ l10n/de_AT/files_versions.po | 43 ++ l10n/de_AT/lib.po | 267 ++++++++++++ l10n/de_AT/settings.po | 516 ++++++++++++++++++++++ l10n/de_AT/user_ldap.po | 419 ++++++++++++++++++ l10n/de_AT/user_webdavauth.po | 33 ++ l10n/de_CH/core.po | 629 +++++++++++++++++++++++++++ l10n/de_CH/files.po | 348 +++++++++++++++ l10n/de_CH/files_encryption.po | 176 ++++++++ l10n/de_CH/files_external.po | 123 ++++++ l10n/de_CH/files_sharing.po | 80 ++++ l10n/de_CH/files_trashbin.po | 88 ++++ l10n/de_CH/files_versions.po | 43 ++ l10n/de_CH/lib.po | 267 ++++++++++++ l10n/de_CH/settings.po | 516 ++++++++++++++++++++++ l10n/de_CH/user_ldap.po | 419 ++++++++++++++++++ l10n/de_CH/user_webdavauth.po | 33 ++ l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 9 +- l10n/de_DE/files_sharing.po | 4 +- l10n/el/core.po | 14 +- l10n/el/files.po | 13 +- l10n/el/files_sharing.po | 21 +- l10n/el/files_trashbin.po | 9 +- l10n/el/files_versions.po | 13 +- l10n/el/lib.po | 14 +- l10n/el/user_webdavauth.po | 11 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_sharing.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_encryption.po | 15 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/te/core.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_TW/core.po | 10 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/settings.po | 26 +- lib/l10n/cs_CZ.php | 34 +- lib/l10n/el.php | 4 + settings/l10n/zh_TW.php | 10 + 248 files changed, 6032 insertions(+), 541 deletions(-) create mode 100644 l10n/de_AT/core.po create mode 100644 l10n/de_AT/files.po create mode 100644 l10n/de_AT/files_encryption.po create mode 100644 l10n/de_AT/files_external.po create mode 100644 l10n/de_AT/files_sharing.po create mode 100644 l10n/de_AT/files_trashbin.po create mode 100644 l10n/de_AT/files_versions.po create mode 100644 l10n/de_AT/lib.po create mode 100644 l10n/de_AT/settings.po create mode 100644 l10n/de_AT/user_ldap.po create mode 100644 l10n/de_AT/user_webdavauth.po create mode 100644 l10n/de_CH/core.po create mode 100644 l10n/de_CH/files.po create mode 100644 l10n/de_CH/files_encryption.po create mode 100644 l10n/de_CH/files_external.po create mode 100644 l10n/de_CH/files_sharing.po create mode 100644 l10n/de_CH/files_trashbin.po create mode 100644 l10n/de_CH/files_versions.po create mode 100644 l10n/de_CH/lib.po create mode 100644 l10n/de_CH/settings.po create mode 100644 l10n/de_CH/user_ldap.po create mode 100644 l10n/de_CH/user_webdavauth.po diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 7291dbbf156..219cf87c33d 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,6 +1,8 @@ "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", +"Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", +"Invalid Token" => "Μη έγκυρο Token", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", @@ -47,6 +49,7 @@ "{count} folders" => "{count} φάκελοι", "1 file" => "1 αρχείο", "{count} files" => "{count} αρχεία", +"%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 4dd06280d87..fcf0287f04f 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -2,21 +2,21 @@ "Recovery key successfully enabled" => "Záchranný klíč byl úspěšně povolen", "Could not enable recovery key. Please check your recovery key password!" => "Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!", "Recovery key successfully disabled" => "Záchranný klíč byl úspěšně zakázán", -"Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče.", +"Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!", "Password successfully changed." => "Heslo bylo úspěšně změněno.", -"Could not change the password. Maybe the old password was not correct." => "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně.", +"Could not change the password. Maybe the old password was not correct." => "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.", "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno zvně systému ownCloud (např. ve vašem firemním adresáři). Můžete opravit vaše heslo soukromého klíče ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována.", -"Following users are not set up for encryption:" => "Následující uživatelé nejsou připraveni k zakódování:", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 či novější s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována.", +"Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", "You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", -"Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (dovoluje obnovu uživatelských souborů v případě ztráty hesla)", +"Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)", "Recovery key password" => "Heslo klíče pro obnovu", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", @@ -25,13 +25,13 @@ "New Recovery key password" => "Nové heslo klíče pro obnovu", "Change Password" => "Změnit heslo", "Your private key password no longer match your log-in password:" => "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:", -"Set your old private key password to your current log-in password." => "Jako původní heslo soukromého klíče použít stávající přihlašovací heslo.", -" If you don't remember your old password you can ask your administrator to recover your files." => "Pokud si nevzpomínáte vaše původní heslo, můžete požádat správce o obnovu vašich souborů.", -"Old log-in password" => "Staré přihlašovací heslo", +"Set your old private key password to your current log-in password." => "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů.", +"Old log-in password" => "Původní přihlašovací heslo", "Current log-in password" => "Aktuální přihlašovací heslo", "Update Private Key Password" => "Změnit heslo soukromého klíče", "Enable password recovery:" => "Povolit obnovu hesla:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", -"File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", -"Could not update file recovery" => "Nelze aktualizovat obnovu souborů" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", +"File recovery settings updated" => "Možnosti záchrany souborů aktualizovány", +"Could not update file recovery" => "Nelze nastavit záchranu souborů" ); diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 79bde7e2626..5a20b2093cd 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", +"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", "You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 3404ce4a542..073201d06b1 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,8 +8,8 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", -"Missing requirements." => "Requisitos em falta.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", +"Missing requirements." => "Requisitos não encontrados.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitada e configurada corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", @@ -18,7 +18,7 @@ "Encryption" => "Criptografia", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", "Recovery key password" => "Senha da chave de recuperação", -"Enabled" => "Habilidado", +"Enabled" => "Habilitado", "Disabled" => "Desabilitado", "Change recovery key password:" => "Mudar a senha da chave de recuperação:", "Old Recovery key password" => "Senha antiga da chave de recuperação", @@ -28,7 +28,7 @@ "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", " If you don't remember your old password you can ask your administrator to recover your files." => "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos.", "Old log-in password" => "Senha antiga de login", -"Current log-in password" => "Atual senha de login", +"Current log-in password" => "Senha de login atual", "Update Private Key Password" => "Atualizar senha de chave privada", "Enable password recovery:" => "Habilitar recuperação de senha:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 12603044d63..c64ecbb5e26 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -5,8 +5,8 @@ "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.", -"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", "External Storage" => "Externí úložiště", "Folder name" => "Název složky", "External storage" => "Externí úložiště", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 3eebb39e7e8..bc9a645e112 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -5,7 +5,7 @@ "Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", "Reasons might be:" => "Možné důvody:", "the item was removed" => "položka byla odebrána", -"the link expired" => "odkazu vypršela platnost", +"the link expired" => "platnost odkazu vypršela", "sharing is disabled" => "sdílení je zakázané", "For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", "%s shared the folder %s with you" => "%s s Vámi sdílí složku %s", diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index b7b89353718..8f68ae5818f 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,6 +1,13 @@ "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", "Submit" => "Καταχώρηση", +"Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", +"Reasons might be:" => "Οι λόγοι μπορεί να είναι:", +"the item was removed" => "το αντικείμενο απομακρύνθηκε", +"the link expired" => "ο σύνδεσμος έληξε", +"sharing is disabled" => "ο διαμοιρασμός απενεργοποιήθηκε", +"For more info, please ask the person who sent this link." => "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", "%s shared the folder %s with you" => "%s μοιράστηκε τον φάκελο %s μαζί σας", "%s shared the file %s with you" => "%s μοιράστηκε το αρχείο %s μαζί σας", "Download" => "Λήψη", diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index f95d90ada61..ad48038ff62 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} φάκελοι", "1 file" => "1 αρχείο", "{count} files" => "{count} αρχεία", +"restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Restore" => "Επαναφορά", "Delete" => "Διαγραφή", diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index d589770553c..3269fbe1201 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,5 +1,8 @@ "Αδυναμία επαναφοράς του: %s", "Versions" => "Εκδόσεις", +"Failed to revert {file} to revision {timestamp}." => "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}.", +"More versions..." => "Περισσότερες εκδόσεις...", +"No other versions available" => "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες", "Restore" => "Επαναφορά" ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 2b7cb504030..7150e77b9dc 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,3 +1,5 @@ "Αυθεντικοποίηση μέσω WebDAV " +"WebDAV Authentication" => "Αυθεντικοποίηση μέσω WebDAV ", +"Address: " => "Διεύθυνση:", +"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." => "Τα διαπιστευτήρια του χρήστη θα σταλούν σε αυτή την διεύθυνση. Αυτό το πρόσθετο ελέγχει την απόκριση και θα ερμηνεύσει τους κωδικούς κατάστασης HTTP 401 και 402 ως μη έγκυρα διαπιστευτήρια και όλες τις άλλες αποκρίσεις ως έγκυρα διαπιστευτήρια." ); diff --git a/core/l10n/el.php b/core/l10n/el.php index e9bd84342f8..80f14feafe5 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -43,6 +43,7 @@ "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", "Cancel" => "Άκυρο", +"Error loading file picker template" => "Σφάλμα φόρτωσης αρχείου επιλογέα προτύπου", "Yes" => "Ναι", "No" => "Όχι", "Ok" => "Οκ", @@ -61,6 +62,7 @@ "Share with link" => "Διαμοιρασμός με σύνδεσμο", "Password protect" => "Προστασία συνθηματικού", "Password" => "Συνθηματικό", +"Allow Public Upload" => "Να επιτρέπεται η Δημόσια Αποστολή", "Email link to person" => "Αποστολή συνδέσμου με email ", "Send" => "Αποστολή", "Set expiration date" => "Ορισμός ημ. λήξης", @@ -108,9 +110,11 @@ "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Δεν είναι διαθέσιμο το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, παρακαλώ ενεργοποιήστε το πρόσθετο της PHP, OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Χωρίς το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, μπορεί να διαρρεύσει ο λογαριασμός σας από επιθέσεις στο διαδίκτυο.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess.", +"For information how to properly configure your server, please see the documentation." => "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση.", "Create an admin account" => "Δημιουργήστε έναν λογαριασμό διαχειριστή", "Advanced" => "Για προχωρημένους", "Data folder" => "Φάκελος δεδομένων", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 2889c92f519..bc381329b76 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -110,9 +110,11 @@ "Add" => "增加", "Security Warning" => "安全性警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "請更新 PHP 以安全地使用 %s。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。", +"For information how to properly configure your server, please see the documentation." => "請參考說明文件以瞭解如何正確設定您的伺服器。", "Create an admin account" => "建立一個管理者帳號", "Advanced" => "進階", "Data folder" => "資料夾", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 7fb684e2570..a045850030e 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index d9758262cff..31b933d9197 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index c50d07e6b7a..d8d3d8214a1 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 6789bd0d8ab..a3b4194c6fd 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index e65aa2dab5c..9c95c045cdb 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 3f45e338fe7..091c063d0c0 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index b6af75f4312..f86bf7d7af0 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 4f1f1e4f233..f4120be967e 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 45151e69e6c..9e2ddf53a6f 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index b4cb4f1bc4a..885d3a66407 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 43608233054..90e87e11497 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 753949b2100..c93521744cd 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index f692cb6aab5..884be157805 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index eedc7bbdb21..7503bf0db72 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -5,14 +5,15 @@ # Translators: # Honza K. , 2013 # Martin , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-03 23:30+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-05 18:40+0000\n" +"Last-Translator: pstast \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" @@ -36,7 +37,7 @@ msgstr "Záchranný klíč byl úspěšně zakázán" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče." +msgstr "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -44,7 +45,7 @@ msgstr "Heslo bylo úspěšně změněno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně." +msgstr "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." @@ -62,7 +63,7 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno zvně systému ownCloud (např. ve vašem firemním adresáři). Můžete opravit vaše heslo soukromého klíče ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." +msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." #: hooks/hooks.php:44 msgid "Missing requirements." @@ -73,11 +74,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována." +msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 či novější s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "Následující uživatelé nejsou připraveni k zakódování:" +msgstr "Následující uživatelé nemají nastavené šifrování:" #: js/settings-admin.js:11 msgid "Saving..." @@ -104,7 +105,7 @@ msgstr "Šifrování" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Povolit klíč pro obnovu (dovoluje obnovu uživatelských souborů v případě ztráty hesla)" +msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)" #: templates/settings-admin.php:14 msgid "Recovery key password" @@ -140,17 +141,17 @@ msgstr "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašo #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "Jako původní heslo soukromého klíče použít stávající přihlašovací heslo." +msgstr "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Pokud si nevzpomínáte vaše původní heslo, můžete požádat správce o obnovu vašich souborů." +msgstr "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "Staré přihlašovací heslo" +msgstr "Původní přihlašovací heslo" #: templates/settings-personal.php:30 msgid "Current log-in password" @@ -168,12 +169,12 @@ msgstr "Povolit obnovu hesla:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" +msgstr "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "Možnosti obnovy souborů aktualizovány" +msgstr "Možnosti záchrany souborů aktualizovány" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "Nelze aktualizovat obnovu souborů" +msgstr "Nelze nastavit záchranu souborů" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d1284c351c8..a9e29ba28e7 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-05 18:50+0000\n" +"Last-Translator: pstast \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" @@ -17,7 +18,7 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Přístup povolen" @@ -25,7 +26,7 @@ msgstr "Přístup povolen" msgid "Error configuring Dropbox storage" msgstr "Chyba při nastavení úložiště Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Povolit přístup" @@ -33,29 +34,29 @@ msgstr "Povolit přístup" msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:447 +#: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:450 +#: lib/config.php:451 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:453 +#: lib/config.php:454 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index cbf65e02fbf..a6be32abb2f 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "položka byla odebrána" #: templates/part.404.php:7 msgid "the link expired" -msgstr "odkazu vypršela platnost" +msgstr "platnost odkazu vypršela" #: templates/part.404.php:8 msgid "sharing is disabled" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index b08c1e51166..f6b76bfe8e0 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-05 18:00+0000\n" +"Last-Translator: pstast \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" @@ -46,11 +47,11 @@ msgstr "Administrace" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "Selhalo povýšení verze \"%s\"." +msgstr "Selhala aktualizace verze \"%s\"." #: defaults.php:35 msgid "web services under your control" -msgstr "služby webu pod Vaší kontrolou" +msgstr "webové služby pod Vaší kontrolou" #: files.php:66 files.php:98 #, php-format @@ -59,7 +60,7 @@ msgstr "nelze otevřít \"%s\"" #: files.php:226 msgid "ZIP download is turned off." -msgstr "Stahování ZIPu je vypnuto." +msgstr "Stahování v ZIPu je vypnuto." #: files.php:227 msgid "Files need to be downloaded one by one." @@ -71,7 +72,7 @@ msgstr "Zpět k souborům" #: files.php:253 msgid "Selected files too large to generate zip file." -msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." +msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." #: files.php:254 msgid "" @@ -125,16 +126,16 @@ msgstr "V názvu databáze %s nesmíte používat tečky." #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s" +msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "Musíte zadat existující účet, či správce." +msgstr "Musíte zadat existující účet či správce." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo MySQL není platné" +msgstr "Uživatelské jméno či heslo MySQL není platné" #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -143,7 +144,7 @@ msgstr "Uživatelské jméno, či heslo MySQL není platné" #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "Chyba DB: \"%s\"" +msgstr "Chyba databáze: \"%s\"" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 #: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 @@ -151,7 +152,7 @@ msgstr "Chyba DB: \"%s\"" #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Podezřelý příkaz byl: \"%s\"" +msgstr "Příslušný příkaz byl: \"%s\"" #: setup/mysql.php:85 #, php-format @@ -160,7 +161,7 @@ msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "Zahodit uživatele z MySQL" +msgstr "Zrušte tohoto uživatele z MySQL" #: setup/mysql.php:91 #, php-format @@ -169,7 +170,7 @@ msgstr "Uživatel '%s'@'%%' již v MySQL existuje" #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "Zahodit uživatele z MySQL." +msgstr "Zrušte tohoto uživatele z MySQL" #: setup/oci.php:34 msgid "Oracle connection could not be established" @@ -177,16 +178,16 @@ msgstr "Spojení s Oracle nemohlo být navázáno" #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Uživatelské jméno, či heslo Oracle není platné" +msgstr "Uživatelské jméno či heslo Oracle není platné" #: setup/oci.php:173 setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" +msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" +msgstr "Uživatelské jméno či heslo PostgreSQL není platné" #: setup.php:28 msgid "Set an admin username." @@ -200,7 +201,7 @@ msgstr "Zadejte heslo správce." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." #: setup.php:185 #, php-format @@ -209,7 +210,7 @@ msgstr "Zkonzultujte, prosím, průvodce instalací." #: template/functions.php:80 msgid "seconds ago" -msgstr "před pár vteřinami" +msgstr "před pár sekundami" #: template/functions.php:81 msgid "1 minute ago" @@ -249,7 +250,7 @@ msgstr "minulý měsíc" #: template/functions.php:89 #, php-format msgid "%d months ago" -msgstr "Před %d měsíci" +msgstr "před %d měsíci" #: template/functions.php:90 msgid "last year" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index da8c0b6502e..8280e1eea43 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 18:03+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 10570bb3a98..b75d8da4b7a 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 1254ad5c412..82a3b9b7382 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 36b441fb9a6..6c8d5f69531 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index d69592d284c..d75738c26d3 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2c33ac99d71..50449474ba0 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 6e390fdcb36..6ce42eb608a 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 7f2bc3ce5f4..aeff36e75a7 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 03ee7749156..c1f8c4726d4 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5984d3c31d9..a8263e4c718 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po new file mode 100644 index 00000000000..26a530d9eeb --- /dev/null +++ b/l10n/de_AT/core.po @@ -0,0 +1,629 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:293 +msgid "Settings" +msgstr "" + +#: js/js.js:753 +msgid "seconds ago" +msgstr "" + +#: js/js.js:754 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:755 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:756 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:757 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:758 +msgid "today" +msgstr "" + +#: js/js.js:759 +msgid "yesterday" +msgstr "" + +#: js/js.js:760 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:761 +msgid "last month" +msgstr "" + +#: js/js.js:762 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:763 +msgid "months ago" +msgstr "" + +#: js/js.js:764 +msgid "last year" +msgstr "" + +#: js/js.js:765 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:122 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 +msgid "Error loading file picker template" +msgstr "" + +#: js/oc-dialogs.js:164 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:131 js/share.js:683 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:149 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:158 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:160 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:183 +msgid "Share with" +msgstr "" + +#: js/share.js:188 +msgid "Share with link" +msgstr "" + +#: js/share.js:191 +msgid "Password protect" +msgstr "" + +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +msgid "Password" +msgstr "" + +#: js/share.js:198 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:202 +msgid "Email link to person" +msgstr "" + +#: js/share.js:203 +msgid "Send" +msgstr "" + +#: js/share.js:208 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:209 +msgid "Expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Share via email:" +msgstr "" + +#: js/share.js:243 +msgid "No people found" +msgstr "" + +#: js/share.js:281 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:317 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:338 +msgid "Unshare" +msgstr "" + +#: js/share.js:350 +msgid "can edit" +msgstr "" + +#: js/share.js:352 +msgid "access control" +msgstr "" + +#: js/share.js:355 +msgid "create" +msgstr "" + +#: js/share.js:358 +msgid "update" +msgstr "" + +#: js/share.js:361 +msgid "delete" +msgstr "" + +#: js/share.js:364 +msgid "share" +msgstr "" + +#: js/share.js:398 js/share.js:630 +msgid "Password protected" +msgstr "" + +#: js/share.js:643 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:655 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:670 +msgid "Sending ..." +msgstr "" + +#: js/share.js:681 +msgid "Email sent" +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:60 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +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:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +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:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Request 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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +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" +"Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +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:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:41 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:47 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:65 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:67 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:77 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 +msgid "will be used" +msgstr "" + +#: templates/installation.php:140 +msgid "Database user" +msgstr "" + +#: templates/installation.php:147 +msgid "Database password" +msgstr "" + +#: templates/installation.php:152 +msgid "Database name" +msgstr "" + +#: templates/installation.php:160 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:167 +msgid "Database host" +msgstr "" + +#: templates/installation.php:175 +msgid "Finish setup" +msgstr "" + +#: templates/layout.user.php:41 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:66 +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:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +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!

Cheers!" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po new file mode 100644 index 00000000000..8b21b5f1692 --- /dev/null +++ b/l10n/de_AT/files.po @@ -0,0 +1,348 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:123 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +msgid "Pending" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "replace" +msgstr "" + +#: js/filelist.js:303 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "cancel" +msgstr "" + +#: js/filelist.js:350 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:350 +msgid "undo" +msgstr "" + +#: js/filelist.js:375 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:458 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:461 js/filelist.js:519 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:344 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:744 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:745 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:746 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:763 +msgid "1 folder" +msgstr "" + +#: js/files.js:765 +msgid "{count} folders" +msgstr "" + +#: js/files.js:773 +msgid "1 file" +msgstr "" + +#: js/files.js:775 +msgid "{count} files" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/part.list.php:74 +msgid "directory" +msgstr "" + +#: templates/part.list.php:76 +msgid "directories" +msgstr "" + +#: templates/part.list.php:85 +msgid "file" +msgstr "" + +#: templates/part.list.php:87 +msgid "files" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po new file mode 100644 index 00000000000..1da0538316b --- /dev/null +++ b/l10n/de_AT/files_encryption.po @@ -0,0 +1,176 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\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:51 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:7 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:45 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po new file mode 100644 index 00000000000..8eaf2edc158 --- /dev/null +++ b/l10n/de_AT/files_external.po @@ -0,0 +1,123 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:448 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:451 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:454 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po new file mode 100644 index 00000000000..4e09271a0bb --- /dev/null +++ b/l10n/de_AT/files_sharing.po @@ -0,0 +1,80 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +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:15 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:26 templates/public.php:88 +msgid "Download" +msgstr "" + +#: templates/public.php:43 templates/public.php:46 +msgid "Upload" +msgstr "" + +#: templates/public.php:56 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:85 +msgid "No preview available for" +msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po new file mode 100644 index 00000000000..12c2585e9cb --- /dev/null +++ b/l10n/de_AT/files_trashbin.po @@ -0,0 +1,88 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:100 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +msgid "Error" +msgstr "" + +#: js/trash.js:36 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:127 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:182 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:183 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:192 +msgid "1 folder" +msgstr "" + +#: js/trash.js:194 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:202 +msgid "1 file" +msgstr "" + +#: js/trash.js:204 +msgid "{count} files" +msgstr "" + +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/de_AT/files_versions.po b/l10n/de_AT/files_versions.po new file mode 100644 index 00000000000..8abfcfe23ad --- /dev/null +++ b/l10n/de_AT/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:149 +msgid "Restore" +msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po new file mode 100644 index 00000000000..39a75daeadf --- /dev/null +++ b/l10n/de_AT/lib.po @@ -0,0 +1,267 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:360 +msgid "Help" +msgstr "" + +#: app.php:373 +msgid "Personal" +msgstr "" + +#: app.php:384 +msgid "Settings" +msgstr "" + +#: app.php:396 +msgid "Users" +msgstr "" + +#: app.php:409 +msgid "Apps" +msgstr "" + +#: app.php:417 +msgid "Admin" +msgstr "" + +#: app.php:844 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:228 files.php:256 +msgid "Back to Files" +msgstr "" + +#: files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: helper.php:235 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: setup.php:184 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:185 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template/functions.php:80 +msgid "seconds ago" +msgstr "" + +#: template/functions.php:81 +msgid "1 minute ago" +msgstr "" + +#: template/functions.php:82 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template/functions.php:83 +msgid "1 hour ago" +msgstr "" + +#: template/functions.php:84 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template/functions.php:85 +msgid "today" +msgstr "" + +#: template/functions.php:86 +msgid "yesterday" +msgstr "" + +#: template/functions.php:87 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template/functions.php:88 +msgid "last month" +msgstr "" + +#: template/functions.php:89 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template/functions.php:90 +msgid "last year" +msgstr "" + +#: template/functions.php:91 +msgid "years ago" +msgstr "" + +#: template.php:297 +msgid "Caused by:" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po new file mode 100644 index 00000000000..97a2d199c8e --- /dev/null +++ b/l10n/de_AT/settings.po @@ -0,0 +1,516 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +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 "" + +#: js/apps.js:35 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:41 js/apps.js:81 +msgid "Disable" +msgstr "" + +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +msgid "Enable" +msgstr "" + +#: js/apps.js:60 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 +msgid "Error" +msgstr "" + +#: js/apps.js:95 +msgid "Updating...." +msgstr "" + +#: js/apps.js:98 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:101 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +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:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 +msgid "Groups" +msgstr "" + +#: js/users.js:95 templates/users.php:89 templates/users.php:124 +msgid "Group Admin" +msgstr "" + +#: js/users.js:115 templates/users.php:164 +msgid "Delete" +msgstr "" + +#: js/users.js:269 +msgid "add group" +msgstr "" + +#: js/users.js:428 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:429 js/users.js:435 js/users.js:450 +msgid "Error creating user" +msgstr "" + +#: js/users.js:434 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:37 personal.php:38 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +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:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +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:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"System locale can't be set to %s. This means that there might be problems " +"with certain characters in file names. We strongly suggest to install the " +"required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +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:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" + +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:152 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:168 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:178 +msgid "Security" +msgstr "" + +#: templates/admin.php:191 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:199 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:211 +msgid "Log" +msgstr "" + +#: templates/admin.php:212 +msgid "Log level" +msgstr "" + +#: templates/admin.php:243 +msgid "More" +msgstr "" + +#: templates/admin.php:244 +msgid "Less" +msgstr "" + +#: templates/admin.php:250 templates/personal.php:114 +msgid "Version" +msgstr "" + +#: templates/admin.php:254 templates/personal.php:117 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:43 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +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:39 templates/users.php:23 templates/users.php:86 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:85 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:85 templates/personal.php:86 +msgid "Language" +msgstr "" + +#: templates/personal.php:98 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:104 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:106 +#, php-format +msgid "" +"Use this address to access your Files via WebDAV" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Username" +msgstr "" + +#: templates/users.php:91 +msgid "Storage" +msgstr "" + +#: templates/users.php:102 +msgid "change display name" +msgstr "" + +#: templates/users.php:106 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po new file mode 100644 index 00000000000..2affcc0727d --- /dev/null +++ b/l10n/de_AT/user_ldap.po @@ -0,0 +1,419 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\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:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +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:12 +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:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +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/settings.php:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:55 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:56 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:59 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:60 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:61 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:64 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:65 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:69 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:71 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:71 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:72 +msgid "Port" +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:73 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:74 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:75 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:75 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:76 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:76 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:77 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:78 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:78 +#, php-format +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your %s server." +msgstr "" + +#: templates/settings.php:78 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:79 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:79 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:81 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:83 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:85 templates/settings.php:88 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:86 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:86 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:87 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:87 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:88 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:89 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:91 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:94 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:94 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:95 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:96 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:96 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:101 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:102 +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:103 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:105 +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:106 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:107 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:108 +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:109 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:111 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:111 +msgid "Help" +msgstr "" diff --git a/l10n/de_AT/user_webdavauth.po b/l10n/de_AT/user_webdavauth.po new file mode 100644 index 00000000000..c63e57c165e --- /dev/null +++ b/l10n/de_AT/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +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/de_CH/core.po b/l10n/de_CH/core.po new file mode 100644 index 00000000000..4553d2f9585 --- /dev/null +++ b/l10n/de_CH/core.po @@ -0,0 +1,629 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:293 +msgid "Settings" +msgstr "" + +#: js/js.js:753 +msgid "seconds ago" +msgstr "" + +#: js/js.js:754 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:755 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:756 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:757 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:758 +msgid "today" +msgstr "" + +#: js/js.js:759 +msgid "yesterday" +msgstr "" + +#: js/js.js:760 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:761 +msgid "last month" +msgstr "" + +#: js/js.js:762 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:763 +msgid "months ago" +msgstr "" + +#: js/js.js:764 +msgid "last year" +msgstr "" + +#: js/js.js:765 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:122 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 +msgid "Error loading file picker template" +msgstr "" + +#: js/oc-dialogs.js:164 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:131 js/share.js:683 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:149 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:158 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:160 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:183 +msgid "Share with" +msgstr "" + +#: js/share.js:188 +msgid "Share with link" +msgstr "" + +#: js/share.js:191 +msgid "Password protect" +msgstr "" + +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +msgid "Password" +msgstr "" + +#: js/share.js:198 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:202 +msgid "Email link to person" +msgstr "" + +#: js/share.js:203 +msgid "Send" +msgstr "" + +#: js/share.js:208 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:209 +msgid "Expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Share via email:" +msgstr "" + +#: js/share.js:243 +msgid "No people found" +msgstr "" + +#: js/share.js:281 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:317 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:338 +msgid "Unshare" +msgstr "" + +#: js/share.js:350 +msgid "can edit" +msgstr "" + +#: js/share.js:352 +msgid "access control" +msgstr "" + +#: js/share.js:355 +msgid "create" +msgstr "" + +#: js/share.js:358 +msgid "update" +msgstr "" + +#: js/share.js:361 +msgid "delete" +msgstr "" + +#: js/share.js:364 +msgid "share" +msgstr "" + +#: js/share.js:398 js/share.js:630 +msgid "Password protected" +msgstr "" + +#: js/share.js:643 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:655 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:670 +msgid "Sending ..." +msgstr "" + +#: js/share.js:681 +msgid "Email sent" +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:60 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +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:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +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:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Request 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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +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" +"Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +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:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:41 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:47 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:65 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:67 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:77 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 +msgid "will be used" +msgstr "" + +#: templates/installation.php:140 +msgid "Database user" +msgstr "" + +#: templates/installation.php:147 +msgid "Database password" +msgstr "" + +#: templates/installation.php:152 +msgid "Database name" +msgstr "" + +#: templates/installation.php:160 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:167 +msgid "Database host" +msgstr "" + +#: templates/installation.php:175 +msgid "Finish setup" +msgstr "" + +#: templates/layout.user.php:41 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:66 +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:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +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!

Cheers!" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po new file mode 100644 index 00000000000..5025406758b --- /dev/null +++ b/l10n/de_CH/files.po @@ -0,0 +1,348 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:123 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +msgid "Pending" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "replace" +msgstr "" + +#: js/filelist.js:303 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "cancel" +msgstr "" + +#: js/filelist.js:350 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:350 +msgid "undo" +msgstr "" + +#: js/filelist.js:375 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:458 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:461 js/filelist.js:519 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:344 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:744 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:745 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:746 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:763 +msgid "1 folder" +msgstr "" + +#: js/files.js:765 +msgid "{count} folders" +msgstr "" + +#: js/files.js:773 +msgid "1 file" +msgstr "" + +#: js/files.js:775 +msgid "{count} files" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/part.list.php:74 +msgid "directory" +msgstr "" + +#: templates/part.list.php:76 +msgid "directories" +msgstr "" + +#: templates/part.list.php:85 +msgid "file" +msgstr "" + +#: templates/part.list.php:87 +msgid "files" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po new file mode 100644 index 00000000000..b4d122cb00a --- /dev/null +++ b/l10n/de_CH/files_encryption.po @@ -0,0 +1,176 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\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:51 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:7 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:45 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po new file mode 100644 index 00000000000..2b551874ba5 --- /dev/null +++ b/l10n/de_CH/files_external.po @@ -0,0 +1,123 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:448 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:451 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:454 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po new file mode 100644 index 00000000000..e2c77260498 --- /dev/null +++ b/l10n/de_CH/files_sharing.po @@ -0,0 +1,80 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +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:15 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:26 templates/public.php:88 +msgid "Download" +msgstr "" + +#: templates/public.php:43 templates/public.php:46 +msgid "Upload" +msgstr "" + +#: templates/public.php:56 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:85 +msgid "No preview available for" +msgstr "" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po new file mode 100644 index 00000000000..ebd2ca003f3 --- /dev/null +++ b/l10n/de_CH/files_trashbin.po @@ -0,0 +1,88 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:100 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +msgid "Error" +msgstr "" + +#: js/trash.js:36 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:127 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:182 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:183 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:192 +msgid "1 folder" +msgstr "" + +#: js/trash.js:194 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:202 +msgid "1 file" +msgstr "" + +#: js/trash.js:204 +msgid "{count} files" +msgstr "" + +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/de_CH/files_versions.po b/l10n/de_CH/files_versions.po new file mode 100644 index 00000000000..468ea3be06a --- /dev/null +++ b/l10n/de_CH/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:149 +msgid "Restore" +msgstr "" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po new file mode 100644 index 00000000000..1d2f5677fb4 --- /dev/null +++ b/l10n/de_CH/lib.po @@ -0,0 +1,267 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:360 +msgid "Help" +msgstr "" + +#: app.php:373 +msgid "Personal" +msgstr "" + +#: app.php:384 +msgid "Settings" +msgstr "" + +#: app.php:396 +msgid "Users" +msgstr "" + +#: app.php:409 +msgid "Apps" +msgstr "" + +#: app.php:417 +msgid "Admin" +msgstr "" + +#: app.php:844 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:228 files.php:256 +msgid "Back to Files" +msgstr "" + +#: files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: helper.php:235 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: setup.php:184 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:185 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template/functions.php:80 +msgid "seconds ago" +msgstr "" + +#: template/functions.php:81 +msgid "1 minute ago" +msgstr "" + +#: template/functions.php:82 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template/functions.php:83 +msgid "1 hour ago" +msgstr "" + +#: template/functions.php:84 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template/functions.php:85 +msgid "today" +msgstr "" + +#: template/functions.php:86 +msgid "yesterday" +msgstr "" + +#: template/functions.php:87 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template/functions.php:88 +msgid "last month" +msgstr "" + +#: template/functions.php:89 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template/functions.php:90 +msgid "last year" +msgstr "" + +#: template/functions.php:91 +msgid "years ago" +msgstr "" + +#: template.php:297 +msgid "Caused by:" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po new file mode 100644 index 00000000000..635f9ddd5dd --- /dev/null +++ b/l10n/de_CH/settings.po @@ -0,0 +1,516 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +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 "" + +#: js/apps.js:35 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:41 js/apps.js:81 +msgid "Disable" +msgstr "" + +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +msgid "Enable" +msgstr "" + +#: js/apps.js:60 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 +msgid "Error" +msgstr "" + +#: js/apps.js:95 +msgid "Updating...." +msgstr "" + +#: js/apps.js:98 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:101 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +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:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 +msgid "Groups" +msgstr "" + +#: js/users.js:95 templates/users.php:89 templates/users.php:124 +msgid "Group Admin" +msgstr "" + +#: js/users.js:115 templates/users.php:164 +msgid "Delete" +msgstr "" + +#: js/users.js:269 +msgid "add group" +msgstr "" + +#: js/users.js:428 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:429 js/users.js:435 js/users.js:450 +msgid "Error creating user" +msgstr "" + +#: js/users.js:434 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:37 personal.php:38 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +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:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +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:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"System locale can't be set to %s. This means that there might be problems " +"with certain characters in file names. We strongly suggest to install the " +"required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +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:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" + +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:152 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:168 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:178 +msgid "Security" +msgstr "" + +#: templates/admin.php:191 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:199 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:211 +msgid "Log" +msgstr "" + +#: templates/admin.php:212 +msgid "Log level" +msgstr "" + +#: templates/admin.php:243 +msgid "More" +msgstr "" + +#: templates/admin.php:244 +msgid "Less" +msgstr "" + +#: templates/admin.php:250 templates/personal.php:114 +msgid "Version" +msgstr "" + +#: templates/admin.php:254 templates/personal.php:117 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:43 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +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:39 templates/users.php:23 templates/users.php:86 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:85 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:85 templates/personal.php:86 +msgid "Language" +msgstr "" + +#: templates/personal.php:98 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:104 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:106 +#, php-format +msgid "" +"Use this address to access your Files via WebDAV" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Username" +msgstr "" + +#: templates/users.php:91 +msgid "Storage" +msgstr "" + +#: templates/users.php:102 +msgid "change display name" +msgstr "" + +#: templates/users.php:106 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po new file mode 100644 index 00000000000..fbc8386846e --- /dev/null +++ b/l10n/de_CH/user_ldap.po @@ -0,0 +1,419 @@ +# 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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\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:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +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:12 +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:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +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/settings.php:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:55 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:56 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:59 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:60 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:61 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:64 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:65 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:69 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:71 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:71 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:72 +msgid "Port" +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:73 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:74 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:75 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:75 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:76 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:76 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:77 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:78 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:78 +#, php-format +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your %s server." +msgstr "" + +#: templates/settings.php:78 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:79 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:79 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:81 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:83 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:85 templates/settings.php:88 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:86 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:86 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:87 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:87 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:88 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:89 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:91 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:94 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:94 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:95 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:96 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:96 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:101 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:102 +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:103 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:105 +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:106 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:107 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:108 +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:109 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:111 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:111 +msgid "Help" +msgstr "" diff --git a/l10n/de_CH/user_webdavauth.po b/l10n/de_CH/user_webdavauth.po new file mode 100644 index 00000000000..b7acf171034 --- /dev/null +++ b/l10n/de_CH/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +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/de_DE/core.po b/l10n/de_DE/core.po index dd51b3b8a6c..74a9b97b5b7 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 2e308e619bf..91e1c340110 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 0a059904d4c..76b2fc9474a 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -4,15 +4,16 @@ # # Translators: # ako84 , 2013 +# Mario Siegmann , 2013 # JamFX , 2013 # traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 17:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,7 +78,7 @@ msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index c9d6f21c1a6..22a6aa0d50d 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 35365a40c50..279c232cc46 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -210,7 +210,7 @@ msgstr "Άκυρο" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Σφάλμα φόρτωσης αρχείου επιλογέα προτύπου" #: js/oc-dialogs.js:164 msgid "Yes" @@ -291,7 +291,7 @@ msgstr "Συνθηματικό" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Να επιτρέπεται η Δημόσια Αποστολή" #: js/share.js:202 msgid "Email link to person" @@ -503,7 +503,7 @@ msgstr "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE- #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια." #: templates/installation.php:32 msgid "" @@ -528,7 +528,7 @@ msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/el/files.po b/l10n/el/files.po index 483392c611c..560d737eb2f 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +31,11 @@ msgstr "Αδυναμία μετακίνησης του %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Αδυναμία ορισμού καταλόγου αποστολής." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Μη έγκυρο Token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -232,7 +233,7 @@ msgstr "{count} αρχεία" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "Αδυναμία μετονομασίας του %s" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index de0401891f7..5fe608cdb4b 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." #: templates/authenticate.php:7 msgid "Password" @@ -31,27 +32,27 @@ msgstr "Καταχώρηση" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Οι λόγοι μπορεί να είναι:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "το αντικείμενο απομακρύνθηκε" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "ο σύνδεσμος έληξε" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "ο διαμοιρασμός απενεργοποιήθηκε" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." #: templates/public.php:15 #, php-format diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index cd235636c4d..b344736372f 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 07:40+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} αρχεία" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "έγινε επαναφορά" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 010d0537290..69a93edf4e8 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 07:40+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Εκδόσεις" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Περισσότερες εκδόσεις..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index bb7c7370a71..b0250c735a2 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 08:00+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "Διαχειριστής" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Αποτυχία αναβάθμισης του \"%s\"." #: defaults.php:35 msgid "web services under your control" @@ -54,7 +54,7 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "αδυναμία ανοίγματος \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +76,7 @@ msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας." #: helper.php:235 msgid "couldn't be determined" @@ -260,7 +260,7 @@ msgstr "χρόνια πριν" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Προκλήθηκε από:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index db3f513be64..85544e07257 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -6,15 +6,16 @@ # Dimitris M. , 2012 # Efstathios Iosifidis , 2012 # Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012-2013 # Konstantinos Tzanidis , 2012 # Marios Bekatoros <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 08:10+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +29,11 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Διεύθυνση:" #: templates/settings.php:7 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 "" +msgstr "Τα διαπιστευτήρια του χρήστη θα σταλούν σε αυτή την διεύθυνση. Αυτό το πρόσθετο ελέγχει την απόκριση και θα ερμηνεύσει τους κωδικούς κατάστασης HTTP 401 και 402 ως μη έγκυρα διαπιστευτήρια και όλες τις άλλες αποκρίσεις ως έγκυρα διαπιστευτήρια." diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index d8208942860..e3737d260a1 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index e1ab35afffd..94c722fa9a3 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 5d4bafb72e3..fb07e265774 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 335b02a961a..ac5fb371eb7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index df90223eb61..3a0a3dd5525 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 48669cf204d..157f80855b7 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 4a039576404..ab79aa69706 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 383bd74c393..302b80c747a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 6000db04ff2..06175e56f3b 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index a27e177c486..8f694afd293 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index bbe39b87e55..1af48d91541 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 05f8b83ac09..04f1e2fcfb1 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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/files.po b/l10n/et_EE/files.po index cac6450a0f9..97ccf238bd6 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 3c6979735ff..0eb4a12a9d8 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index c81ffc06bfe..6c08ab0fce1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e62535539f6..3275700171a 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 903a0b24aa6..81b2f6c18a9 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index b6e1472a3ee..576a489ef39 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 78eab8b1751..1317b3c7247 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 77ae948e11f..a39839bae35 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 65c06b520b7..72b034badb4 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c6e4b9ee9d8..303c76c8899 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index e78e822651e..6194c089988 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 57e4125227c..838c8b679e4 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index d90f42f46c7..4c33dc27a39 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index f89822b341b..67c79c9ec35 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index f1181958316..db43bc51fb6 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 012454459c1..a7f5d6d1ce9 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index ff946e4f69b..13e9cefab47 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 4c5600aa55b..815769afeb2 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 24c1a5d53c1..1071366768b 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 9f1ce229c78..9ce5f7cc91e 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index beaf2aeae5c..81bdf7ec8fe 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index b86b527c732..0ac273788ea 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 1accb3a66a3..74836110cc8 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 07535df580c..5584638c0e4 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 35dad9d514e..7aced2efc9f 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index d5cd26bf878..d56e22a6e28 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 7c8ddc7cacc..78f3d8894a7 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 0ddb2f6bb99..59d5e3109f5 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 9e70cb518ac..071e4f73194 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 68d91a29914..ac0a658eb5e 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index a373e078940..17b4712d164 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index d67cff2dde5..b3ba4692e85 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 7130233a662..79f5f77df10 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 9fe09adf63d..acc203bf921 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 57067a3de70..3a908a4d0f8 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 3db22086b2f..e4966a548d8 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index abaf413f682..173d4522e0d 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 5df5b08ecf6..17724a5967a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 217df783810..b2ebeff4403 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index feeca3cbaf1..0118ea9fe20 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index cbafdbe58ff..90a702baaa7 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 4980cae8889..7ce0742beb9 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 8f64ae7fb1a..bae4e7aefa5 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index c66af7f1368..5bc5f41fc52 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index b1be2067a36..a6bb4bf0094 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 313e5241c32..04b3363a7d3 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 81868d1a0ef..31c89e7e6cd 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index de8a2f445db..f3161b3030c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 8c03bf34b9c..57cf7f3dfa8 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 36a7cc9c72e..f3be635c899 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 925646a6bcd..978078f33b6 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index d4546d92d4f..764a162a141 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 890293257c9..77e438a5279 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 48678354f4d..985b0af5094 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index b99907df262..d221e3871f4 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index a6e89dddd3d..ca9c5b80294 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2690fe2d978..5b9fc48cf9d 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 924cfe1f38b..54d647f95f3 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 40c38fda754..2e092f8a986 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 0a7605a3f01..2906d12760e 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index a920f0276d2..1afacc6cca0 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b16e146c113..dbcf6c58cd2 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index c2b25dd28dc..afc9d5c7815 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index b7d397e48dd..ffd5a17d6e7 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 38aeb8e210d..f99439ded33 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 5b81ab15ac4..954e77ca28a 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 70b6fef3f67..511c253152a 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 6b951723bfd..19a7af920ed 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 77271613070..d04bb04647c 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index e6c777862c9..ea3d97c5cd6 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 9890ffba4c2..081415b1b70 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index ffdb64e6069..c3ad85d42b1 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e1de8e6f857..c515ab3bab4 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index d611330ffcc..5a89e893def 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 6b1ff940263..e0c421cf232 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 78ca5c6dadc..ac20d293001 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index d36ccd21150..0639f7d02a7 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 03c071a0dde..4b2ff875d13 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index feeec482783..87e172a775e 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 46d00b80437..b07cc10ec9f 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index b8303b01f1e..48225563d0e 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0c61635fb86..c445879c1d8 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index f256b1fec36..252c18bd3c4 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index dc022a82a21..1a6992cd4b6 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index ef824855876..217fdc591b2 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index cb38b400e0d..3dfe41bd6bd 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index bebc61f2fb9..557bd7d0809 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # bjamalaro , 2013 # Flávio Veras , 2013 +# wcavassin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 01:20+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-05 23:20+0000\n" +"Last-Translator: wcavassin \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" @@ -65,14 +66,14 @@ msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "Requisitos em falta." +msgstr "Requisitos não encontrados." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." +msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitada e configurada corretamente. Por enquanto, o aplicativo de criptografia foi desativado." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" @@ -111,7 +112,7 @@ msgstr "Senha da chave de recuperação" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "Habilidado" +msgstr "Habilitado" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" @@ -153,7 +154,7 @@ msgstr "Senha antiga de login" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "Atual senha de login" +msgstr "Senha de login atual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 7b872797049..453ca120b6f 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index abba963f8b2..9c091b6f800 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 3a0d7a3dfe9..96b89f3afa3 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 468e3d08848..ef9f8e11a77 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 888968365ec..5696b2a9efd 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 6837c350aea..2e124639962 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 29f0f95e2d7..bf1518c49c3 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index f94be423de9..8410ab88252 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index f47de17a517..74675f578d1 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 698ff11358f..244bdea5e0b 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 13b71cf063b..3e30001f0b6 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 934b1e022fd..56596df684b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 4eabc2ac666..83f086d0d7c 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 5df52e2878d..ee4ed3e4b59 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 9cb1d0c6394..89af6a30dd4 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 988e0889292..18458f84c40 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index d0c6971b5f9..482ea1caf7e 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 0983be14b85..d543c3ad123 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index baea63065ae..47e1076f579 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 64a19a9f10f..f8552e44936 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 4937d145aa9..488945798b5 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 3599e09b985..64007bf9f08 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 48259183d3b..d387b83ccf4 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 741113a8e75..d85ad49986d 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 2f7332e85c0..5fe336ebf12 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 3cd21eb3efe..e30f663a084 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 0d103e93864..0b6b7c80421 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index f141fb768eb..2d33f19186f 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 370cb2dd676..b3140d3acc0 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 707b478f94e..95e8da89b11 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 67e28fc37ee..0b7c460e287 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index a98cdc44aad..943c93ab9be 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 4880d98b43e..f5ecc9d83d9 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 918b7289fa7..c033af8536e 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index db8f2b38885..d462d168d99 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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.pot b/l10n/templates/files.pot index aa5dffefa13..f0fd7ff3b78 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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_encryption.pot b/l10n/templates/files_encryption.pot index 0ac83fd87a1..f45ad5e6b50 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 b88ddd25008..6fe36ebdfd2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 4567e455d16..50edd0d6b32 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 792ddf2bc77..75f82a9b7a5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 9bd404365d1..33e5e2fc5d8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 1d115ab6007..a22fb7cdbf2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 118417261f7..4f776c51576 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 e4570600530..afdcab2141f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 7ee42ea4f8f..8270b66c302 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"POT-Creation-Date: 2013-08-07 08:59-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 06a3412e2a4..2b2eb976a23 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 3107408129d..f14b4cc52fc 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 1e6b0998b02..425f2d18d5c 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 7164783ff8d..fe7c9b9d1e2 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index a6f545c65ef..a1719364372 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 3c854435244..494628568cc 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 1cd2900cda9..28b886ec0f0 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5b7a57f3fe6..d0450008d22 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 97bd1eb5b71..54a98b555d4 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 97c36a73437..e0e8575e753 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 5f9e6441d61..f5c2cd2fb4f 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a44d48e4b03..4c747b05e0f 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 601d15beb1e..348d910e1fa 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index e4c1b0b1c40..94151459579 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index ca43703fa14..b274cce4ea9 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 4c5fff60a89..47ce6adaf75 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index bedd18c3cb0..18cddc46b8c 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index bbcfe2019cd..813fda9499a 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 8e31402793e..3305b7fbbbd 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 6b64060f1e1..b7ec2b43639 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 02d055c5c5b..42d80f04146 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index a07f1801cfa..013eee53c4e 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 52055ca3cc4..ed5fbd0aba6 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 5fd010d872c..40bf4a77a00 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 551e3adda0a..b0da2eac01a 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 0979fce2724..e28629b8c22 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -498,7 +498,7 @@ msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "請更新 PHP 以安全地使用 %s。" #: templates/installation.php:32 msgid "" @@ -523,7 +523,7 @@ msgstr "您的資料目錄看起來可以被 Internet 公開存取,因為 .hta msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "請參考說明文件以瞭解如何正確設定您的伺服器。" #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index ad4babbbca4..ab8b7e2c5e5 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 280428331a2..77a810102c4 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index c7b6216ecf9..c8de92286f6 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -181,7 +181,7 @@ msgid "" "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 "" +msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" #: templates/admin.php:29 msgid "Setup Warning" @@ -196,7 +196,7 @@ msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為 #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "請參考安裝指南。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -218,7 +218,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -231,7 +231,7 @@ msgid "" "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 "" +msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" #: templates/admin.php:92 msgid "Cron" @@ -245,11 +245,11 @@ msgstr "當頁面載入時,執行" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。" #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。" #: templates/admin.php:128 msgid "Sharing" @@ -273,12 +273,12 @@ msgstr "允許使用者以結連公開分享檔案" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "允許任何人上傳" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" #: templates/admin.php:160 msgid "Allow resharing" @@ -307,14 +307,14 @@ msgstr "強制啟用 HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "強迫用戶端使用加密連線連接到 %s" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" #: templates/admin.php:211 msgid "Log" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 7390c5f432a..4952b2ccddf 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -5,13 +5,13 @@ "Users" => "Uživatelé", "Apps" => "Aplikace", "Admin" => "Administrace", -"Failed to upgrade \"%s\"." => "Selhalo povýšení verze \"%s\".", -"web services under your control" => "služby webu pod Vaší kontrolou", +"Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", +"web services under your control" => "webové služby pod Vaší kontrolou", "cannot open \"%s\"" => "nelze otevřít \"%s\"", -"ZIP download is turned off." => "Stahování ZIPu je vypnuto.", +"ZIP download is turned off." => "Stahování v ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", -"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", +"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", "couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", @@ -23,24 +23,24 @@ "%s enter the database username." => "Zadejte uživatelské jméno %s databáze.", "%s enter the database name." => "Zadejte název databáze pro %s databáze.", "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", -"MS SQL username and/or password not valid: %s" => "Uživatelské jméno, či heslo MSSQL není platné: %s", -"You need to enter either an existing account or the administrator." => "Musíte zadat existující účet, či správce.", -"MySQL username and/or password not valid" => "Uživatelské jméno, či heslo MySQL není platné", -"DB Error: \"%s\"" => "Chyba DB: \"%s\"", -"Offending command was: \"%s\"" => "Podezřelý příkaz byl: \"%s\"", +"MS SQL username and/or password not valid: %s" => "Uživatelské jméno či heslo MSSQL není platné: %s", +"You need to enter either an existing account or the administrator." => "Musíte zadat existující účet či správce.", +"MySQL username and/or password not valid" => "Uživatelské jméno či heslo MySQL není platné", +"DB Error: \"%s\"" => "Chyba databáze: \"%s\"", +"Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Uživatel '%s'@'localhost' již v MySQL existuje.", -"Drop this user from MySQL" => "Zahodit uživatele z MySQL", +"Drop this user from MySQL" => "Zrušte tohoto uživatele z MySQL", "MySQL user '%s'@'%%' already exists" => "Uživatel '%s'@'%%' již v MySQL existuje", -"Drop this user from MySQL." => "Zahodit uživatele z MySQL.", +"Drop this user from MySQL." => "Zrušte tohoto uživatele z MySQL", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", -"Oracle username and/or password not valid" => "Uživatelské jméno, či heslo Oracle není platné", -"Offending command was: \"%s\", name: %s, password: %s" => "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s", -"PostgreSQL username and/or password not valid" => "Uživatelské jméno, či heslo PostgreSQL není platné", +"Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", +"Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", +"PostgreSQL username and/or password not valid" => "Uživatelské jméno či heslo PostgreSQL není platné", "Set an admin username." => "Zadejte uživatelské jméno správce.", "Set an admin password." => "Zadejte heslo správce.", -"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, protože rozhraní WebDAV je rozbité.", +"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í.", -"seconds ago" => "před pár vteřinami", +"seconds ago" => "před pár sekundami", "1 minute ago" => "před minutou", "%d minutes ago" => "před %d minutami", "1 hour ago" => "před hodinou", @@ -49,7 +49,7 @@ "yesterday" => "včera", "%d days ago" => "před %d dny", "last month" => "minulý měsíc", -"%d months ago" => "Před %d měsíci", +"%d months ago" => "před %d měsíci", "last year" => "minulý rok", "years ago" => "před lety", "Caused by:" => "Příčina:", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 3e876aefdfe..de1c6d67937 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -5,11 +5,14 @@ "Users" => "Χρήστες", "Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", +"Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", +"cannot open \"%s\"" => "αδυναμία ανοίγματος \"%s\"", "ZIP download is turned off." => "Η λήψη ZIP απενεργοποιήθηκε.", "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας.", "couldn't be determined" => "δεν μπορούσε να προσδιορισθεί", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", @@ -49,5 +52,6 @@ "%d months ago" => "%d μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", +"Caused by:" => "Προκλήθηκε από:", "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index ecafdcc8451..b4590859dae 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -37,25 +37,35 @@ "A valid password must be provided" => "一定要提供一個有效的密碼", "__language_name__" => "__language_name__", "Security Warning" => "安全性警告", +"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 支援。", "Locale not working" => "語系無法運作", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", "Internet connection not working" => "無網際網路存取", +"This 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", "Execute one task with each page loaded" => "當頁面載入時,執行", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。", +"Use systems cron service to call the cron.php file once a minute." => "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。", "Sharing" => "分享", "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", "Allow links" => "允許連結", "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", +"Allow public uploads" => "允許任何人上傳", +"Allow users to enable others to upload into their publicly shared folders" => "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」", "Allow resharing" => "允許轉貼分享", "Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案", "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", +"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 加密。", "Log" => "紀錄", "Log level" => "紀錄層級", "More" => "更多", -- GitLab From 67df0a60fba81af8e8783759cd09258ba78fc085 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 7 Aug 2013 17:01:14 +0200 Subject: [PATCH 121/164] Check expected type after JSON decode instead of checking what is not expected. This will also allow "true" and "false" as filenames instead of only "null". --- apps/files/ajax/download.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 7c8dcb372e2..b2bfd53506d 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -35,7 +35,7 @@ $dir = $_GET["dir"]; $files_list = json_decode($files); // in case we get only a single file -if ($files_list === NULL ) { +if (!is_array($files_list)) { $files_list = array($files); } -- GitLab From 2cc94cbc7387a7cd15803c8e3b4d450f05e7b041 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 7 Aug 2013 18:16:34 +0200 Subject: [PATCH 122/164] Style fixes --- lib/db.php | 4 ++-- lib/db/adapteroci8.php | 3 ++- lib/db/adapterpgsql.php | 3 ++- lib/db/statementwrapper.php | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/db.php b/lib/db.php index 2b6cd59366a..d004d491efb 100644 --- a/lib/db.php +++ b/lib/db.php @@ -249,7 +249,7 @@ class OC_DB { static public function executeAudited( $stmt, array $parameters = null) { if (is_string($stmt)) { // convert to an array with 'sql' - if (stripos($stmt,'LIMIT') !== false) { //OFFSET requires LIMIT, se we only neet to check for LIMIT + if (stripos($stmt, 'LIMIT') !== false) { //OFFSET requires LIMIT, so we only need to check for LIMIT // TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL $message = 'LIMIT and OFFSET are forbidden for portability reasons,' . ' pass an array with \'limit\' and \'offset\' instead'; @@ -257,7 +257,7 @@ class OC_DB { } $stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null); } - if (is_array($stmt)){ + if (is_array($stmt)) { // convert to prepared statement if ( ! array_key_exists('sql', $stmt) ) { $message = 'statement array must at least contain key \'sql\''; diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php index 3ff98af04fe..bc226e979ec 100644 --- a/lib/db/adapteroci8.php +++ b/lib/db/adapteroci8.php @@ -18,10 +18,11 @@ class AdapterOCI8 extends Adapter { return $this->conn->realLastInsertId($table); } + const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400"; public function fixupStatement($statement) { $statement = str_replace( '`', '"', $statement ); $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); - $statement = str_ireplace( 'UNIX_TIMESTAMP()', "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400", $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement ); return $statement; } } diff --git a/lib/db/adapterpgsql.php b/lib/db/adapterpgsql.php index acfc4201629..990d71c9f29 100644 --- a/lib/db/adapterpgsql.php +++ b/lib/db/adapterpgsql.php @@ -14,9 +14,10 @@ class AdapterPgSql extends Adapter { return $this->conn->fetchColumn('SELECT lastval()'); } + const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)'; public function fixupStatement($statement) { $statement = str_replace( '`', '"', $statement ); - $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement ); return $statement; } } diff --git a/lib/db/statementwrapper.php b/lib/db/statementwrapper.php index f7bc45e068f..b8da1afc0e5 100644 --- a/lib/db/statementwrapper.php +++ b/lib/db/statementwrapper.php @@ -53,7 +53,7 @@ class OC_DB_StatementWrapper { */ public function execute($input=array()) { if(OC_Config::getValue( "log_query", false)) { - $params_str = str_replace("\n"," ",var_export($input,true)); + $params_str = str_replace("\n", " ", var_export($input, true)); OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG); } $this->lastArguments = $input; @@ -134,7 +134,7 @@ class OC_DB_StatementWrapper { $host = OC_Config::getValue( "dbhost", "" ); $user = OC_Config::getValue( "dbuser", "" ); $pass = OC_Config::getValue( "dbpassword", "" ); - if (strpos($host,':')) { + if (strpos($host, ':')) { list($host, $port) = explode(':', $host, 2); } else { $port = false; -- GitLab From 367b248bc0ed2609d538de4f1a2e198f7d0c7d6a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 7 Aug 2013 18:18:09 +0200 Subject: [PATCH 123/164] show 'More apps' link to app administration directly in app navigation --- core/css/styles.css | 4 ++++ core/templates/layout.user.php | 13 +++++++++++++ lib/app.php | 10 +--------- settings/img/apps.png | Bin 196 -> 259 bytes settings/img/apps.svg | 22 +++++++++++++++------- 5 files changed, 33 insertions(+), 16 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 0dd66fb5b7c..dc7e4313f0c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -481,6 +481,10 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #navigation li:first-child a { padding-top:16px; } +#apps-management { + opacity: .6; +} + /* USER MENU */ #settings { float:right; margin-top:7px; color:#bbb; text-shadow:0 -1px 0 #000; } diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index b7405ea273b..3c1114492cb 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -89,6 +89,19 @@ + + + +
  • + class="active"> + + + t('More apps')); ?> + + +
  • +
    diff --git a/lib/app.php b/lib/app.php index 2437896157a..5fa650044f3 100644 --- a/lib/app.php +++ b/lib/app.php @@ -401,15 +401,7 @@ class OC_App{ // if the user is an admin if(OC_User::isAdminUser(OC_User::getUser())) { - // admin apps menu - $settings[] = array( - "id" => "core_apps", - "order" => 3, - "href" => OC_Helper::linkToRoute( "settings_apps" ).'?installed', - "name" => $l->t("Apps"), - "icon" => OC_Helper::imagePath( "settings", "apps.svg" ) - ); - + // admin settings $settings[]=array( "id" => "admin", "order" => 1000, diff --git a/settings/img/apps.png b/settings/img/apps.png index 2b18f678a0295f45a82250698440a9b6d9e1ed43..6dc8d4c8a6e1f345d150b19c66badceefed15fe8 100644 GIT binary patch delta 208 zcmX@Y*vw?u8Q|y6%O%Cdz`(%k>ERLtq!mDzgAGU)S5mdKI;Vst E0IUN@&j0`b delta 144 zcmZo>I>Kns8Q|y6%O%Cdz`(%k>ERLtqy<2ji5W;H%@zLyq?n7HJVQ7*IBq}me=yO| zHk>oSC&cy4nKMAC|NsC0o;8CL$YLxB@(X5gcy=QV$WicgaSY*zPEKfGzQ%Bkfo&aY n4EF`jH(nMZ4J_$QvxFG-ns6Iw#}|GDs%7wW^>bP0l+XkKiXbSD diff --git a/settings/img/apps.svg b/settings/img/apps.svg index e2cc48f2956..338938f256e 100644 --- a/settings/img/apps.svg +++ b/settings/img/apps.svg @@ -1,8 +1,16 @@ - - - - - - - + + + + + + image/svg+xml + + + + + + + + + -- GitLab From 0783267e2ccca0ab3e8dc8143308bd379320ef1e Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 7 Aug 2013 18:21:49 +0200 Subject: [PATCH 124/164] Move query processing after the check for prepared statement cache --- lib/db/connection.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/db/connection.php b/lib/db/connection.php index 7f207ff76ec..24466d7bddd 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -62,9 +62,6 @@ class Connection extends \Doctrine\DBAL\Connection { * @return \Doctrine\DBAL\Driver\Statement The prepared statement. */ public function prepare( $statement, $limit=null, $offset=null ) { - $statement = $this->replaceTablePrefix($statement); - $statement = $this->adapter->fixupStatement($statement); - if ($limit === -1) { $limit = null; } @@ -76,7 +73,10 @@ class Connection extends \Doctrine\DBAL\Connection { return $this->preparedQueries[$statement]; } } - if(\OC_Config::getValue( "log_query", false)) { + $statement = $this->replaceTablePrefix($statement); + $statement = $this->adapter->fixupStatement($statement); + + if(\OC_Config::getValue( 'log_query', false)) { \OC_Log::write('core', 'DB prepare : '.$statement, \OC_Log::DEBUG); } $result = parent::prepare($statement); -- GitLab From 83988a5906443164ba9b092664d893519b2b85e6 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 7 Aug 2013 21:01:31 +0200 Subject: [PATCH 125/164] Fix stupid bug --- lib/db/connection.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/db/connection.php b/lib/db/connection.php index 24466d7bddd..e8905d041f0 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -72,6 +72,7 @@ class Connection extends \Doctrine\DBAL\Connection { if (isset($this->preparedQueries[$statement]) && $this->cachingQueryStatementEnabled) { return $this->preparedQueries[$statement]; } + $origStatement = $statement; } $statement = $this->replaceTablePrefix($statement); $statement = $this->adapter->fixupStatement($statement); @@ -81,7 +82,7 @@ class Connection extends \Doctrine\DBAL\Connection { } $result = parent::prepare($statement); if (is_null($limit) && $this->cachingQueryStatementEnabled) { - $this->preparedQueries[$statement] = $result; + $this->preparedQueries[$origStatement] = $result; } return $result; } -- GitLab From 775f33cc1b64bdd6ed48039fdd91331f0e91826d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 7 Aug 2013 21:53:25 +0200 Subject: [PATCH 126/164] prepend the new app before the 'More apps' function --- settings/js/apps.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings/js/apps.js b/settings/js/apps.js index 0540d9b1c58..66606afad80 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -152,7 +152,8 @@ OC.Settings.Apps = OC.Settings.Apps || { a.prepend(filename); a.prepend(img); li.append(a); - container.append(li); + // prepend the new app before the 'More apps' function + $('#apps-management').before(li); if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { $(img).addClass('svg'); replaceSVG(); -- GitLab From 7a9daa99d1e801620affb38bf78a7323a59ed908 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 7 Aug 2013 21:53:53 +0200 Subject: [PATCH 127/164] scroll the app navigation down so the newly added app is seen --- settings/js/apps.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings/js/apps.js b/settings/js/apps.js index 66606afad80..545d005eff4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -154,6 +154,8 @@ OC.Settings.Apps = OC.Settings.Apps || { li.append(a); // prepend the new app before the 'More apps' function $('#apps-management').before(li); + // scroll the app navigation down so the newly added app is seen + $('#navigation').animate({ scrollTop: $('#apps').height() }, 'slow'); if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { $(img).addClass('svg'); replaceSVG(); -- GitLab From 31d50288a501dad64400450914d076b43b6ea037 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 7 Aug 2013 21:54:28 +0200 Subject: [PATCH 128/164] draw attention to the newly added app entry by flashing it twice --- settings/js/apps.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings/js/apps.js b/settings/js/apps.js index 545d005eff4..2ff3f0536d4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -156,6 +156,9 @@ OC.Settings.Apps = OC.Settings.Apps || { $('#apps-management').before(li); // scroll the app navigation down so the newly added app is seen $('#navigation').animate({ scrollTop: $('#apps').height() }, 'slow'); + // draw attention to the newly added app entry by flashing it twice + container.children('li[data-id="'+entry.id+'"]').animate({opacity:.3}).animate({opacity:1}).animate({opacity:.3}).animate({opacity:1}); + if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { $(img).addClass('svg'); replaceSVG(); -- GitLab From d563367b0f0bc6a419b8bf61b85aa701231bcad0 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 7 Aug 2013 22:22:33 +0200 Subject: [PATCH 129/164] More style fixes --- lib/db.php | 18 +++++++++--------- lib/db/connection.php | 12 ++++++------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lib/db.php b/lib/db.php index d004d491efb..ebd012c72f8 100644 --- a/lib/db.php +++ b/lib/db.php @@ -73,7 +73,7 @@ class OC_DB { } // do nothing if the connection already has been established - if(!self::$connection) { + if (!self::$connection) { $config = new \Doctrine\DBAL\Configuration(); switch($type) { case 'sqlite': @@ -140,7 +140,7 @@ class OC_DB { return false; } $connectionParams['wrapperClass'] = 'OC\DB\Connection'; - $connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" ); + $connectionParams['tablePrefix'] = OC_Config::getValue('dbtableprefix', 'oc_' ); try { self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); if ($type === 'sqlite' || $type === 'sqlite3') { @@ -201,12 +201,12 @@ class OC_DB { // return the result try { - $result=self::$connection->prepare($query, $limit, $offset); - } catch(\Doctrine\DBAL\DBALException $e) { + $result = self::$connection->prepare($query, $limit, $offset); + } catch (\Doctrine\DBAL\DBALException $e) { throw new \DatabaseException($e->getMessage(), $query); } // differentiate between query and manipulation - $result=new OC_DB_StatementWrapper($result, $isManipulation); + $result = new OC_DB_StatementWrapper($result, $isManipulation); return $result; } @@ -218,19 +218,19 @@ class OC_DB { * @return bool */ static public function isManipulation( $sql ) { - $selectOccurrence = stripos ($sql, "SELECT"); + $selectOccurrence = stripos($sql, 'SELECT'); if ($selectOccurrence !== false && $selectOccurrence < 10) { return false; } - $insertOccurrence = stripos ($sql, "INSERT"); + $insertOccurrence = stripos($sql, 'INSERT'); if ($insertOccurrence !== false && $insertOccurrence < 10) { return true; } - $updateOccurrence = stripos ($sql, "UPDATE"); + $updateOccurrence = stripos($sql, 'UPDATE'); if ($updateOccurrence !== false && $updateOccurrence < 10) { return true; } - $deleteOccurrence = stripos ($sql, "DELETE"); + $deleteOccurrence = stripos($sql, 'DELETE'); if ($deleteOccurrence !== false && $deleteOccurrence < 10) { return true; } diff --git a/lib/db/connection.php b/lib/db/connection.php index e8905d041f0..2581969dbd0 100644 --- a/lib/db/connection.php +++ b/lib/db/connection.php @@ -14,9 +14,9 @@ use Doctrine\Common\EventManager; class Connection extends \Doctrine\DBAL\Connection { /** - * @var string $table_prefix + * @var string $tablePrefix */ - protected $table_prefix; + protected $tablePrefix; /** * @var \OC\DB\Adapter $adapter @@ -45,12 +45,12 @@ class Connection extends \Doctrine\DBAL\Connection { if (!isset($params['adapter'])) { throw new \Exception('adapter not set'); } - if (!isset($params['table_prefix'])) { - throw new \Exception('table_prefix not set'); + if (!isset($params['tablePrefix'])) { + throw new \Exception('tablePrefix not set'); } parent::__construct($params, $driver, $config, $eventManager); $this->adapter = new $params['adapter']($this); - $this->table_prefix = $params['table_prefix']; + $this->tablePrefix = $params['tablePrefix']; } /** @@ -183,7 +183,7 @@ class Connection extends \Doctrine\DBAL\Connection { * @return string */ protected function replaceTablePrefix($statement) { - return str_replace( '*PREFIX*', $this->table_prefix, $statement ); + return str_replace( '*PREFIX*', $this->tablePrefix, $statement ); } public function enableQueryStatementCaching() { -- GitLab From cfbdad9cdb5c978225af796c128e4ad7bd011eee Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 11:50:56 +0200 Subject: [PATCH 130/164] catch broken server config and disable encryption app. --- apps/files_encryption/hooks/hooks.php | 2 +- apps/files_encryption/lib/helper.php | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 741df166b70..e933207a9e1 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -40,7 +40,7 @@ class Hooks { public static function login($params) { $l = new \OC_L10N('files_encryption'); //check if all requirements are met - if(!Helper::checkRequirements() ) { + if(!Helper::checkRequirements() || !Helper::checkConfiguration() ) { $error_msg = $l->t("Missing requirements."); $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); \OC_App::disable('files_encryption'); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 6eee8fed6a6..d3d4afff912 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -232,6 +232,18 @@ class Helper { return (bool) $result; } + + /** + * check some common errors if the server isn't configured properly for encryption + * @return bool true if configuration seems to be OK + */ + public static function checkConfiguration() { + if(openssl_pkey_new(array('private_key_bits' => 4096))) { + return true; + } else { + return false; + } + } /** * @brief glob uses different pattern than regular expressions, escape glob pattern only -- GitLab From 7aeb0068beeab6e2dbd129a13e2ccddac61c1c1b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 13:51:33 +0200 Subject: [PATCH 131/164] also write error message to the log --- apps/files_encryption/lib/helper.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index d3d4afff912..cbc5de41c6b 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -241,6 +241,7 @@ class Helper { if(openssl_pkey_new(array('private_key_bits' => 4096))) { return true; } else { + \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new()fails: ' . openssl_error_string(), \OCP\Util::ERROR); return false; } } -- GitLab From 7ce03ba37c7ff45f2ee529c37469236a0a661725 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 13:57:12 +0200 Subject: [PATCH 132/164] improved error message to refect openSSL PHP extension and stock openSSL configuration issues --- apps/files_encryption/hooks/hooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index e933207a9e1..07da839e8a2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -42,7 +42,7 @@ class Hooks { //check if all requirements are met if(!Helper::checkRequirements() || !Helper::checkConfiguration() ) { $error_msg = $l->t("Missing requirements."); - $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); + $hint = $l->t('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.'); \OC_App::disable('files_encryption'); \OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR); \OCP\Template::printErrorPage($error_msg, $hint); -- GitLab From b39d2d19382a7642099be94f6460cd473dcfaaf9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 15:52:00 +0200 Subject: [PATCH 133/164] more error messages which might be useful for the user to debug his server config --- apps/files_encryption/lib/crypt.php | 4 +++- apps/files_encryption/lib/helper.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 6543a0de5f3..c3e88e5944e 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -57,7 +57,9 @@ class Crypt { if ($res === false) { \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); - \OCP\Util::writeLog('Encryption library', openssl_error_string(), \OCP\Util::ERROR); + while ($msg = openssl_error_string()) { + \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new() fails: ' . $msg, \OCP\Util::ERROR); + } } elseif (openssl_pkey_export($res, $privateKey)) { // Get public key $keyDetails = openssl_pkey_get_details($res); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index cbc5de41c6b..b09c584c0b8 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -241,7 +241,9 @@ class Helper { if(openssl_pkey_new(array('private_key_bits' => 4096))) { return true; } else { - \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new()fails: ' . openssl_error_string(), \OCP\Util::ERROR); + while ($msg = openssl_error_string()) { + \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new() fails: ' . $msg, \OCP\Util::ERROR); + } return false; } } -- GitLab From ab6e47b44adf7bbcfac232af22ec66283cbbd017 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 8 Aug 2013 09:44:19 +0200 Subject: [PATCH 134/164] oc_cache needs to disable file proxys for read/write operation. Otherwise the operation will go through the encryption app which will not work. --- lib/cache/file.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/cache/file.php b/lib/cache/file.php index 531e1d50f40..ba3dedaf8f3 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -29,22 +29,30 @@ class OC_Cache_File{ } public function get($key) { + $result = null; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; if ($this->hasKey($key)) { $storage = $this->getStorage(); - return $storage->file_get_contents($key); + $result = $storage->file_get_contents($key); } - return null; + \OC_FileProxy::$enabled = $proxyStatus; + return $result; } public function set($key, $value, $ttl=0) { $storage = $this->getStorage(); + $result = false; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; if ($storage and $storage->file_put_contents($key, $value)) { if ($ttl === 0) { $ttl = 86400; // 60*60*24 } - return $storage->touch($key, time() + $ttl); + $result = $storage->touch($key, time() + $ttl); } - return false; + \OC_FileProxy::$enabled = $proxyStatus; + return $result; } public function hasKey($key) { -- GitLab From df358dfef5dd92575602a1ab5a70c188d31c6ac4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 8 Aug 2013 13:41:04 +0200 Subject: [PATCH 135/164] fix function call for searUsers() --- lib/group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/group.php b/lib/group.php index 8fbf5f86418..ba93dc129a1 100644 --- a/lib/group.php +++ b/lib/group.php @@ -230,7 +230,7 @@ class OC_Group { public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchUsers($search . $limit, $offset); + $users = $group->searchUsers($search, $limit, $offset); $userIds = array(); foreach ($users as $user) { $userIds[] = $user->getUID(); -- GitLab From ff67f115d403d13dedf77457c539963f50a80eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 8 Aug 2013 13:50:04 +0200 Subject: [PATCH 136/164] fix #2711 using a custom event, also use css selectors over filterAttr --- apps/files/js/fileactions.js | 5 +++-- apps/files_sharing/js/share.js | 7 +++++-- core/js/share.js | 6 +++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index aa66a57a7b5..de67d13559e 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -65,7 +65,7 @@ var FileActions = { FileActions.currentFile = parent; var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); - if ($('tr').filterAttr('data-file', file).data('renaming')) { + if ($('tr[data-file="'+file+'"]').data('renaming')) { return; } parent.children('a.name').append(''); @@ -164,10 +164,11 @@ $(document).ready(function () { window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val()); }); } - $('#fileList tr').each(function () { FileActions.display($(this).children('td.filename')); }); + + $('#fileList').trigger(jQuery.Event("fileActionsReady")); }); diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index eb5a6e8cb7f..b2efafde4e7 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -4,6 +4,10 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { + $('#fileList').one('fileActionsReady',function(){ + OC.Share.loadIcons('file'); + }); + FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { if ($('#dir').val() == '/') { var item = $('#dir').val() + filename; @@ -33,6 +37,5 @@ $(document).ready(function() { OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions); } }); - OC.Share.loadIcons('file'); } -}); +}); \ No newline at end of file diff --git a/core/js/share.js b/core/js/share.js index b4b5159b0b5..b0d38c45cb8 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -22,9 +22,9 @@ OC.Share={ if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); } else { - var file = $('tr').filterAttr('data-id', item); + var file = $('tr[data-id="'+item+'"]'); if (file.length > 0) { - var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); + var action = $(file).find('.fileactions .action[data-action="Share"]'); var img = action.find('img').attr('src', image); action.addClass('permanent'); action.html(' '+t('core', 'Shared')).prepend(img); @@ -36,7 +36,7 @@ OC.Share={ // Search for possible parent folders that are shared while (path != last) { if (path == data['path']) { - var actions = $('.fileactions .action').filterAttr('data-action', 'Share'); + var actions = $('.fileactions .action[data-action="Share"]'); $.each(actions, function(index, action) { var img = $(action).find('img'); if (img.attr('src') != OC.imagePath('core', 'actions/public')) { -- GitLab From 062769ab6144c4b19cc5de41bbace4a6be0cb9b1 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 8 Aug 2013 16:39:33 +0200 Subject: [PATCH 137/164] Remove noisy Log/Debug message --- lib/user.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/user.php b/lib/user.php index ee20f2e0971..93c7c9d4cd5 100644 --- a/lib/user.php +++ b/lib/user.php @@ -137,7 +137,6 @@ class OC_User { */ public static function useBackend($backend = 'database') { if ($backend instanceof OC_User_Interface) { - OC_Log::write('core', 'Adding user backend instance of ' . get_class($backend) . '.', OC_Log::DEBUG); self::$_usedBackends[get_class($backend)] = $backend; self::getManager()->registerBackend($backend); } else { -- GitLab From 0718c92dc805f7379b1dbffcd35155dc7e828b9f Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 8 Aug 2013 22:13:53 +0200 Subject: [PATCH 138/164] Do not repeat definition of $target. --- apps/files/ajax/newfile.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 8548fc95ddf..8ee4888b34d 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -54,6 +54,8 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } +$target = $dir.'/'.$filename; + if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); @@ -62,7 +64,6 @@ if($source) { $ctx = stream_context_create(null, array('notification' =>'progress')); $sourceStream=fopen($source, 'rb', false, $ctx); - $target=$dir.'/'.$filename; $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); if($result) { $meta = \OC\Files\Filesystem::getFileInfo($target); @@ -76,14 +77,14 @@ if($source) { exit(); } else { if($content) { - if(\OC\Files\Filesystem::file_put_contents($dir.'/'.$filename, $content)) { - $meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); + if(\OC\Files\Filesystem::file_put_contents($target, $content)) { + $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); exit(); } - }elseif(\OC\Files\Filesystem::touch($dir . '/' . $filename)) { - $meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); + }elseif(\OC\Files\Filesystem::touch($target)) { + $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); exit(); -- GitLab From 1ed049a6828149e00d424a3dac87b3d1b1777d6a Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 8 Aug 2013 21:27:59 +0200 Subject: [PATCH 139/164] Do not repeat JSON success code. --- apps/files/ajax/newfile.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 8ee4888b34d..22598ee78e1 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -76,14 +76,14 @@ if($source) { $eventSource->close(); exit(); } else { + $success = false; if($content) { - if(\OC\Files\Filesystem::file_put_contents($target, $content)) { - $meta = \OC\Files\Filesystem::getFileInfo($target); - $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); - exit(); - } - }elseif(\OC\Files\Filesystem::touch($target)) { + $success = \OC\Files\Filesystem::file_put_contents($target, $content); + } else { + $success = \OC\Files\Filesystem::touch($target); + } + + if($success) { $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); @@ -91,5 +91,4 @@ if($source) { } } - OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" ))); -- GitLab From 0ab885047867ba9b28514e5e4f93136e74837fe5 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 8 Aug 2013 21:35:18 +0200 Subject: [PATCH 140/164] Adjust JSON code to stable5. --- apps/files/ajax/newfile.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 22598ee78e1..46149c3e8bd 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -86,7 +86,8 @@ if($source) { if($success) { $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); + $mime = $meta['mimetype']; + OCP\JSON::success(array("data" => array('mime'=>$mime, 'content'=>$content, 'id' => $id))); exit(); } } -- GitLab From beb27168de3e81f71c894ee64561d029b3b2b02c Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 8 Aug 2013 21:36:10 +0200 Subject: [PATCH 141/164] Use multiple lines for the JSON data array. --- apps/files/ajax/newfile.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 46149c3e8bd..8c1aad8668c 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -87,7 +87,11 @@ if($source) { $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; $mime = $meta['mimetype']; - OCP\JSON::success(array("data" => array('mime'=>$mime, 'content'=>$content, 'id' => $id))); + OCP\JSON::success(array('data' => array( + 'id' => $id, + 'mime' => $mime, + 'content' => $content, + ))); exit(); } } -- GitLab From f5d23c469d15f09c0591da7634853508592a79f3 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Thu, 8 Aug 2013 16:21:47 -0400 Subject: [PATCH 142/164] use getName instead of getTitle --- core/lostpassword/controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index 20445afe3fe..74a5be2b96f 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -58,7 +58,7 @@ class OC_Core_LostPassword_Controller { $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); try { $defaults = new OC_Defaults(); - OC_Mail::send($email, $_POST['user'], $l->t('%s password reset', array($defaults->getTitle())), $msg, $from, $defaults->getName()); + OC_Mail::send($email, $_POST['user'], $l->t('%s password reset', array($defaults->getName())), $msg, $from, $defaults->getName()); } catch (Exception $e) { OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.'); } -- GitLab From 9334974a926e1d9bae22e434f9f886c3ccb95e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 9 Aug 2013 11:27:21 +0200 Subject: [PATCH 143/164] allow empty configvalue in appconfig --- db_structure.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_structure.xml b/db_structure.xml index ef5de653033..f926ab44cd4 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -32,7 +32,7 @@ configvalue clob - true + false -- GitLab From 98f836363a1aee8dbc767068fcb357802f228cf2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 9 Aug 2013 08:06:31 -0400 Subject: [PATCH 144/164] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 4 +- apps/files/l10n/bg_BG.php | 4 +- apps/files/l10n/bn_BD.php | 4 +- apps/files/l10n/ca.php | 4 +- apps/files/l10n/cs_CZ.php | 4 +- apps/files/l10n/cy_GB.php | 4 +- apps/files/l10n/da.php | 4 +- apps/files/l10n/de.php | 4 +- apps/files/l10n/de_DE.php | 4 +- apps/files/l10n/el.php | 4 +- apps/files/l10n/en@pirate.php | 4 +- apps/files/l10n/eo.php | 4 +- apps/files/l10n/es.php | 4 +- apps/files/l10n/es_AR.php | 4 +- apps/files/l10n/et_EE.php | 4 +- apps/files/l10n/eu.php | 4 +- apps/files/l10n/fa.php | 4 +- apps/files/l10n/fi.php | 4 +- apps/files/l10n/fi_FI.php | 4 +- apps/files/l10n/fr.php | 4 +- apps/files/l10n/gl.php | 4 +- apps/files/l10n/he.php | 4 +- apps/files/l10n/hi.php | 4 +- apps/files/l10n/hr.php | 4 +- apps/files/l10n/hu_HU.php | 4 +- apps/files/l10n/hy.php | 4 +- apps/files/l10n/ia.php | 4 +- apps/files/l10n/id.php | 4 +- apps/files/l10n/is.php | 4 +- apps/files/l10n/it.php | 4 +- apps/files/l10n/ja_JP.php | 4 +- apps/files/l10n/ka.php | 4 +- apps/files/l10n/ka_GE.php | 4 +- apps/files/l10n/ko.php | 4 +- apps/files/l10n/ku_IQ.php | 4 +- apps/files/l10n/lb.php | 4 +- apps/files/l10n/lt_LT.php | 4 +- apps/files/l10n/lv.php | 4 +- apps/files/l10n/mk.php | 4 +- apps/files/l10n/ms_MY.php | 4 +- apps/files/l10n/my_MM.php | 4 +- apps/files/l10n/nb_NO.php | 4 +- apps/files/l10n/nl.php | 4 +- apps/files/l10n/nn_NO.php | 4 +- apps/files/l10n/oc.php | 4 +- apps/files/l10n/pl.php | 4 +- apps/files/l10n/pl_PL.php | 4 +- apps/files/l10n/pt_BR.php | 4 +- apps/files/l10n/pt_PT.php | 4 +- apps/files/l10n/ro.php | 4 +- apps/files/l10n/ru.php | 4 +- apps/files/l10n/ru_RU.php | 4 +- apps/files/l10n/si_LK.php | 4 +- apps/files/l10n/sk_SK.php | 4 +- apps/files/l10n/sl.php | 4 +- apps/files/l10n/sq.php | 4 +- apps/files/l10n/sr.php | 4 +- apps/files/l10n/sr@latin.php | 4 +- apps/files/l10n/sv.php | 4 +- apps/files/l10n/ta_LK.php | 4 +- apps/files/l10n/te.php | 4 +- apps/files/l10n/th_TH.php | 4 +- apps/files/l10n/tr.php | 4 +- apps/files/l10n/ug.php | 4 +- apps/files/l10n/uk.php | 4 +- apps/files/l10n/ur_PK.php | 4 +- apps/files/l10n/vi.php | 4 +- apps/files/l10n/zh_CN.GB2312.php | 4 +- apps/files/l10n/zh_CN.php | 4 +- apps/files/l10n/zh_HK.php | 4 +- apps/files/l10n/zh_TW.php | 4 +- apps/files_encryption/l10n/ar.php | 4 +- apps/files_encryption/l10n/bg_BG.php | 4 +- apps/files_encryption/l10n/bn_BD.php | 4 +- apps/files_encryption/l10n/ca.php | 6 +- apps/files_encryption/l10n/cs_CZ.php | 5 +- apps/files_encryption/l10n/cy_GB.php | 4 +- apps/files_encryption/l10n/da.php | 5 +- apps/files_encryption/l10n/de.php | 5 +- apps/files_encryption/l10n/de_DE.php | 5 +- apps/files_encryption/l10n/el.php | 4 +- apps/files_encryption/l10n/eo.php | 4 +- apps/files_encryption/l10n/es.php | 5 +- apps/files_encryption/l10n/es_AR.php | 5 +- apps/files_encryption/l10n/et_EE.php | 5 +- apps/files_encryption/l10n/eu.php | 5 +- apps/files_encryption/l10n/fa.php | 5 +- apps/files_encryption/l10n/fi_FI.php | 4 +- apps/files_encryption/l10n/fr.php | 5 +- apps/files_encryption/l10n/gl.php | 5 +- apps/files_encryption/l10n/he.php | 4 +- apps/files_encryption/l10n/hr.php | 4 +- apps/files_encryption/l10n/hu_HU.php | 4 +- apps/files_encryption/l10n/id.php | 4 +- apps/files_encryption/l10n/is.php | 4 +- apps/files_encryption/l10n/it.php | 5 +- apps/files_encryption/l10n/ja_JP.php | 6 +- apps/files_encryption/l10n/ka_GE.php | 4 +- apps/files_encryption/l10n/ko.php | 4 +- apps/files_encryption/l10n/ku_IQ.php | 4 +- apps/files_encryption/l10n/lb.php | 4 +- apps/files_encryption/l10n/lt_LT.php | 4 +- apps/files_encryption/l10n/lv.php | 4 +- apps/files_encryption/l10n/mk.php | 4 +- apps/files_encryption/l10n/ms_MY.php | 4 +- apps/files_encryption/l10n/nb_NO.php | 4 +- apps/files_encryption/l10n/nl.php | 5 +- apps/files_encryption/l10n/nn_NO.php | 4 +- apps/files_encryption/l10n/oc.php | 4 +- apps/files_encryption/l10n/pl.php | 4 +- apps/files_encryption/l10n/pt_BR.php | 5 +- apps/files_encryption/l10n/pt_PT.php | 5 +- apps/files_encryption/l10n/ro.php | 4 +- apps/files_encryption/l10n/ru.php | 5 +- apps/files_encryption/l10n/ru_RU.php | 4 +- apps/files_encryption/l10n/si_LK.php | 4 +- apps/files_encryption/l10n/sk_SK.php | 4 +- apps/files_encryption/l10n/sl.php | 5 +- apps/files_encryption/l10n/sr.php | 4 +- apps/files_encryption/l10n/sv.php | 5 +- apps/files_encryption/l10n/ta_LK.php | 4 +- apps/files_encryption/l10n/th_TH.php | 4 +- apps/files_encryption/l10n/tr.php | 4 +- apps/files_encryption/l10n/ug.php | 4 +- apps/files_encryption/l10n/uk.php | 4 +- apps/files_encryption/l10n/vi.php | 4 +- apps/files_encryption/l10n/zh_CN.GB2312.php | 4 +- apps/files_encryption/l10n/zh_CN.php | 4 +- apps/files_encryption/l10n/zh_HK.php | 4 +- apps/files_encryption/l10n/zh_TW.php | 5 +- apps/files_external/l10n/af_ZA.php | 4 +- apps/files_external/l10n/ar.php | 4 +- apps/files_external/l10n/bg_BG.php | 4 +- apps/files_external/l10n/bn_BD.php | 4 +- apps/files_external/l10n/ca.php | 4 +- apps/files_external/l10n/cs_CZ.php | 4 +- apps/files_external/l10n/cy_GB.php | 4 +- apps/files_external/l10n/da.php | 4 +- apps/files_external/l10n/de.php | 4 +- apps/files_external/l10n/de_DE.php | 4 +- apps/files_external/l10n/el.php | 4 +- apps/files_external/l10n/eo.php | 4 +- apps/files_external/l10n/es.php | 4 +- apps/files_external/l10n/es_AR.php | 4 +- apps/files_external/l10n/et_EE.php | 4 +- apps/files_external/l10n/eu.php | 4 +- apps/files_external/l10n/fa.php | 4 +- apps/files_external/l10n/fi_FI.php | 4 +- apps/files_external/l10n/fr.php | 4 +- apps/files_external/l10n/gl.php | 4 +- apps/files_external/l10n/he.php | 4 +- apps/files_external/l10n/hi.php | 4 +- apps/files_external/l10n/hr.php | 4 +- apps/files_external/l10n/hu_HU.php | 4 +- apps/files_external/l10n/hy.php | 4 +- apps/files_external/l10n/ia.php | 4 +- apps/files_external/l10n/id.php | 4 +- apps/files_external/l10n/is.php | 4 +- apps/files_external/l10n/it.php | 4 +- apps/files_external/l10n/ja_JP.php | 4 +- apps/files_external/l10n/ka.php | 4 +- apps/files_external/l10n/ka_GE.php | 4 +- apps/files_external/l10n/ko.php | 4 +- apps/files_external/l10n/ku_IQ.php | 4 +- apps/files_external/l10n/lb.php | 4 +- apps/files_external/l10n/lt_LT.php | 4 +- apps/files_external/l10n/lv.php | 4 +- apps/files_external/l10n/mk.php | 4 +- apps/files_external/l10n/ms_MY.php | 4 +- apps/files_external/l10n/my_MM.php | 4 +- apps/files_external/l10n/nb_NO.php | 4 +- apps/files_external/l10n/nl.php | 4 +- apps/files_external/l10n/nn_NO.php | 4 +- apps/files_external/l10n/oc.php | 4 +- apps/files_external/l10n/pl.php | 4 +- apps/files_external/l10n/pt_BR.php | 4 +- apps/files_external/l10n/pt_PT.php | 4 +- apps/files_external/l10n/ro.php | 4 +- apps/files_external/l10n/ru.php | 4 +- apps/files_external/l10n/ru_RU.php | 4 +- apps/files_external/l10n/si_LK.php | 4 +- apps/files_external/l10n/sk_SK.php | 4 +- apps/files_external/l10n/sl.php | 4 +- apps/files_external/l10n/sq.php | 4 +- apps/files_external/l10n/sr.php | 4 +- apps/files_external/l10n/sr@latin.php | 4 +- apps/files_external/l10n/sv.php | 4 +- apps/files_external/l10n/ta_LK.php | 4 +- apps/files_external/l10n/te.php | 4 +- apps/files_external/l10n/th_TH.php | 4 +- apps/files_external/l10n/tr.php | 4 +- apps/files_external/l10n/ug.php | 4 +- apps/files_external/l10n/uk.php | 4 +- apps/files_external/l10n/ur_PK.php | 4 +- apps/files_external/l10n/vi.php | 4 +- apps/files_external/l10n/zh_CN.GB2312.php | 4 +- apps/files_external/l10n/zh_CN.php | 4 +- apps/files_external/l10n/zh_HK.php | 4 +- apps/files_external/l10n/zh_TW.php | 4 +- apps/files_sharing/l10n/af_ZA.php | 4 +- apps/files_sharing/l10n/ar.php | 4 +- apps/files_sharing/l10n/bg_BG.php | 4 +- apps/files_sharing/l10n/bn_BD.php | 4 +- apps/files_sharing/l10n/ca.php | 4 +- apps/files_sharing/l10n/cs_CZ.php | 4 +- apps/files_sharing/l10n/cy_GB.php | 4 +- apps/files_sharing/l10n/da.php | 4 +- apps/files_sharing/l10n/de.php | 4 +- apps/files_sharing/l10n/de_DE.php | 4 +- apps/files_sharing/l10n/el.php | 4 +- apps/files_sharing/l10n/en@pirate.php | 4 +- apps/files_sharing/l10n/eo.php | 4 +- apps/files_sharing/l10n/es.php | 4 +- apps/files_sharing/l10n/es_AR.php | 4 +- apps/files_sharing/l10n/et_EE.php | 4 +- apps/files_sharing/l10n/eu.php | 4 +- apps/files_sharing/l10n/fa.php | 4 +- apps/files_sharing/l10n/fi_FI.php | 4 +- apps/files_sharing/l10n/fr.php | 4 +- apps/files_sharing/l10n/gl.php | 4 +- apps/files_sharing/l10n/he.php | 4 +- apps/files_sharing/l10n/hi.php | 4 +- apps/files_sharing/l10n/hr.php | 4 +- apps/files_sharing/l10n/hu_HU.php | 10 +- apps/files_sharing/l10n/hy.php | 4 +- apps/files_sharing/l10n/ia.php | 4 +- apps/files_sharing/l10n/id.php | 4 +- apps/files_sharing/l10n/is.php | 4 +- apps/files_sharing/l10n/it.php | 4 +- apps/files_sharing/l10n/ja_JP.php | 10 +- apps/files_sharing/l10n/ka.php | 4 +- apps/files_sharing/l10n/ka_GE.php | 4 +- apps/files_sharing/l10n/ko.php | 4 +- apps/files_sharing/l10n/ku_IQ.php | 4 +- apps/files_sharing/l10n/lb.php | 4 +- apps/files_sharing/l10n/lt_LT.php | 4 +- apps/files_sharing/l10n/lv.php | 4 +- apps/files_sharing/l10n/mk.php | 4 +- apps/files_sharing/l10n/ms_MY.php | 4 +- apps/files_sharing/l10n/my_MM.php | 4 +- apps/files_sharing/l10n/nb_NO.php | 4 +- apps/files_sharing/l10n/nl.php | 4 +- apps/files_sharing/l10n/nn_NO.php | 4 +- apps/files_sharing/l10n/oc.php | 4 +- apps/files_sharing/l10n/pl.php | 4 +- apps/files_sharing/l10n/pt_BR.php | 4 +- apps/files_sharing/l10n/pt_PT.php | 10 +- apps/files_sharing/l10n/ro.php | 4 +- apps/files_sharing/l10n/ru.php | 4 +- apps/files_sharing/l10n/ru_RU.php | 4 +- apps/files_sharing/l10n/si_LK.php | 4 +- apps/files_sharing/l10n/sk_SK.php | 11 +- apps/files_sharing/l10n/sl.php | 4 +- apps/files_sharing/l10n/sq.php | 4 +- apps/files_sharing/l10n/sr.php | 4 +- apps/files_sharing/l10n/sr@latin.php | 4 +- apps/files_sharing/l10n/sv.php | 4 +- apps/files_sharing/l10n/ta_LK.php | 4 +- apps/files_sharing/l10n/te.php | 4 +- apps/files_sharing/l10n/th_TH.php | 4 +- apps/files_sharing/l10n/tr.php | 4 +- apps/files_sharing/l10n/ug.php | 4 +- apps/files_sharing/l10n/uk.php | 4 +- apps/files_sharing/l10n/ur_PK.php | 4 +- apps/files_sharing/l10n/vi.php | 4 +- apps/files_sharing/l10n/zh_CN.GB2312.php | 4 +- apps/files_sharing/l10n/zh_CN.php | 4 +- apps/files_sharing/l10n/zh_HK.php | 4 +- apps/files_sharing/l10n/zh_TW.php | 4 +- apps/files_trashbin/l10n/ar.php | 4 +- apps/files_trashbin/l10n/bg_BG.php | 4 +- apps/files_trashbin/l10n/bn_BD.php | 4 +- apps/files_trashbin/l10n/ca.php | 4 +- apps/files_trashbin/l10n/cs_CZ.php | 4 +- apps/files_trashbin/l10n/cy_GB.php | 4 +- apps/files_trashbin/l10n/da.php | 4 +- apps/files_trashbin/l10n/de.php | 4 +- apps/files_trashbin/l10n/de_DE.php | 4 +- apps/files_trashbin/l10n/el.php | 4 +- apps/files_trashbin/l10n/eo.php | 4 +- apps/files_trashbin/l10n/es.php | 4 +- apps/files_trashbin/l10n/es_AR.php | 4 +- apps/files_trashbin/l10n/et_EE.php | 4 +- apps/files_trashbin/l10n/eu.php | 4 +- apps/files_trashbin/l10n/fa.php | 4 +- apps/files_trashbin/l10n/fi_FI.php | 4 +- apps/files_trashbin/l10n/fr.php | 4 +- apps/files_trashbin/l10n/gl.php | 4 +- apps/files_trashbin/l10n/he.php | 4 +- apps/files_trashbin/l10n/hr.php | 4 +- apps/files_trashbin/l10n/hu_HU.php | 5 +- apps/files_trashbin/l10n/hy.php | 4 +- apps/files_trashbin/l10n/ia.php | 4 +- apps/files_trashbin/l10n/id.php | 4 +- apps/files_trashbin/l10n/is.php | 4 +- apps/files_trashbin/l10n/it.php | 4 +- apps/files_trashbin/l10n/ja_JP.php | 5 +- apps/files_trashbin/l10n/ka_GE.php | 4 +- apps/files_trashbin/l10n/ko.php | 4 +- apps/files_trashbin/l10n/ku_IQ.php | 4 +- apps/files_trashbin/l10n/lb.php | 4 +- apps/files_trashbin/l10n/lt_LT.php | 4 +- apps/files_trashbin/l10n/lv.php | 4 +- apps/files_trashbin/l10n/mk.php | 4 +- apps/files_trashbin/l10n/ms_MY.php | 4 +- apps/files_trashbin/l10n/nb_NO.php | 4 +- apps/files_trashbin/l10n/nl.php | 4 +- apps/files_trashbin/l10n/nn_NO.php | 4 +- apps/files_trashbin/l10n/oc.php | 4 +- apps/files_trashbin/l10n/pl.php | 4 +- apps/files_trashbin/l10n/pt_BR.php | 4 +- apps/files_trashbin/l10n/pt_PT.php | 4 +- apps/files_trashbin/l10n/ro.php | 4 +- apps/files_trashbin/l10n/ru.php | 4 +- apps/files_trashbin/l10n/ru_RU.php | 4 +- apps/files_trashbin/l10n/si_LK.php | 4 +- apps/files_trashbin/l10n/sk_SK.php | 5 +- apps/files_trashbin/l10n/sl.php | 4 +- apps/files_trashbin/l10n/sq.php | 4 +- apps/files_trashbin/l10n/sr.php | 4 +- apps/files_trashbin/l10n/sr@latin.php | 4 +- apps/files_trashbin/l10n/sv.php | 4 +- apps/files_trashbin/l10n/ta_LK.php | 4 +- apps/files_trashbin/l10n/te.php | 4 +- apps/files_trashbin/l10n/th_TH.php | 4 +- apps/files_trashbin/l10n/tr.php | 4 +- apps/files_trashbin/l10n/ug.php | 4 +- apps/files_trashbin/l10n/uk.php | 4 +- apps/files_trashbin/l10n/ur_PK.php | 4 +- apps/files_trashbin/l10n/vi.php | 4 +- apps/files_trashbin/l10n/zh_CN.GB2312.php | 4 +- apps/files_trashbin/l10n/zh_CN.php | 4 +- apps/files_trashbin/l10n/zh_HK.php | 4 +- apps/files_trashbin/l10n/zh_TW.php | 4 +- apps/files_versions/l10n/ar.php | 4 +- apps/files_versions/l10n/bg_BG.php | 4 +- apps/files_versions/l10n/bn_BD.php | 4 +- apps/files_versions/l10n/ca.php | 4 +- apps/files_versions/l10n/cs_CZ.php | 4 +- apps/files_versions/l10n/da.php | 4 +- apps/files_versions/l10n/de.php | 4 +- apps/files_versions/l10n/de_DE.php | 4 +- apps/files_versions/l10n/el.php | 4 +- apps/files_versions/l10n/eo.php | 4 +- apps/files_versions/l10n/es.php | 4 +- apps/files_versions/l10n/es_AR.php | 4 +- apps/files_versions/l10n/et_EE.php | 4 +- apps/files_versions/l10n/eu.php | 4 +- apps/files_versions/l10n/fa.php | 4 +- apps/files_versions/l10n/fi_FI.php | 4 +- apps/files_versions/l10n/fr.php | 4 +- apps/files_versions/l10n/gl.php | 4 +- apps/files_versions/l10n/he.php | 4 +- apps/files_versions/l10n/hu_HU.php | 7 +- apps/files_versions/l10n/id.php | 4 +- apps/files_versions/l10n/is.php | 4 +- apps/files_versions/l10n/it.php | 4 +- apps/files_versions/l10n/ja_JP.php | 4 +- apps/files_versions/l10n/ka_GE.php | 4 +- apps/files_versions/l10n/ko.php | 4 +- apps/files_versions/l10n/ku_IQ.php | 4 +- apps/files_versions/l10n/lt_LT.php | 4 +- apps/files_versions/l10n/lv.php | 4 +- apps/files_versions/l10n/mk.php | 4 +- apps/files_versions/l10n/nb_NO.php | 4 +- apps/files_versions/l10n/nl.php | 4 +- apps/files_versions/l10n/nn_NO.php | 4 +- apps/files_versions/l10n/pl.php | 4 +- apps/files_versions/l10n/pt_BR.php | 4 +- apps/files_versions/l10n/pt_PT.php | 4 +- apps/files_versions/l10n/ro.php | 4 +- apps/files_versions/l10n/ru.php | 4 +- apps/files_versions/l10n/si_LK.php | 4 +- apps/files_versions/l10n/sk_SK.php | 7 +- apps/files_versions/l10n/sl.php | 4 +- apps/files_versions/l10n/sr.php | 4 +- apps/files_versions/l10n/sv.php | 4 +- apps/files_versions/l10n/ta_LK.php | 4 +- apps/files_versions/l10n/th_TH.php | 4 +- apps/files_versions/l10n/tr.php | 4 +- apps/files_versions/l10n/ug.php | 4 +- apps/files_versions/l10n/uk.php | 4 +- apps/files_versions/l10n/vi.php | 4 +- apps/files_versions/l10n/zh_CN.GB2312.php | 4 +- apps/files_versions/l10n/zh_CN.php | 4 +- apps/files_versions/l10n/zh_HK.php | 4 +- apps/files_versions/l10n/zh_TW.php | 4 +- apps/user_ldap/l10n/af_ZA.php | 4 +- apps/user_ldap/l10n/ar.php | 4 +- apps/user_ldap/l10n/bg_BG.php | 4 +- apps/user_ldap/l10n/bn_BD.php | 4 +- apps/user_ldap/l10n/ca.php | 4 +- apps/user_ldap/l10n/cs_CZ.php | 4 +- apps/user_ldap/l10n/cy_GB.php | 4 +- apps/user_ldap/l10n/da.php | 4 +- apps/user_ldap/l10n/de.php | 4 +- apps/user_ldap/l10n/de_DE.php | 4 +- apps/user_ldap/l10n/el.php | 4 +- apps/user_ldap/l10n/en@pirate.php | 4 +- apps/user_ldap/l10n/eo.php | 4 +- apps/user_ldap/l10n/es.php | 4 +- apps/user_ldap/l10n/es_AR.php | 4 +- apps/user_ldap/l10n/et_EE.php | 4 +- apps/user_ldap/l10n/eu.php | 4 +- apps/user_ldap/l10n/fa.php | 4 +- apps/user_ldap/l10n/fi_FI.php | 4 +- apps/user_ldap/l10n/fr.php | 4 +- apps/user_ldap/l10n/gl.php | 4 +- apps/user_ldap/l10n/he.php | 4 +- apps/user_ldap/l10n/hi.php | 4 +- apps/user_ldap/l10n/hr.php | 4 +- apps/user_ldap/l10n/hu_HU.php | 4 +- apps/user_ldap/l10n/ia.php | 4 +- apps/user_ldap/l10n/id.php | 4 +- apps/user_ldap/l10n/is.php | 4 +- apps/user_ldap/l10n/it.php | 4 +- apps/user_ldap/l10n/ja_JP.php | 6 +- apps/user_ldap/l10n/ka.php | 4 +- apps/user_ldap/l10n/ka_GE.php | 4 +- apps/user_ldap/l10n/ko.php | 4 +- apps/user_ldap/l10n/ku_IQ.php | 4 +- apps/user_ldap/l10n/lb.php | 4 +- apps/user_ldap/l10n/lt_LT.php | 4 +- apps/user_ldap/l10n/lv.php | 4 +- apps/user_ldap/l10n/mk.php | 4 +- apps/user_ldap/l10n/ms_MY.php | 4 +- apps/user_ldap/l10n/my_MM.php | 4 +- apps/user_ldap/l10n/nb_NO.php | 4 +- apps/user_ldap/l10n/nl.php | 4 +- apps/user_ldap/l10n/nn_NO.php | 4 +- apps/user_ldap/l10n/oc.php | 4 +- apps/user_ldap/l10n/pl.php | 4 +- apps/user_ldap/l10n/pt_BR.php | 4 +- apps/user_ldap/l10n/pt_PT.php | 4 +- apps/user_ldap/l10n/ro.php | 4 +- apps/user_ldap/l10n/ru.php | 4 +- apps/user_ldap/l10n/ru_RU.php | 4 +- apps/user_ldap/l10n/si_LK.php | 4 +- apps/user_ldap/l10n/sk_SK.php | 12 +- apps/user_ldap/l10n/sl.php | 4 +- apps/user_ldap/l10n/sq.php | 4 +- apps/user_ldap/l10n/sr.php | 4 +- apps/user_ldap/l10n/sr@latin.php | 4 +- apps/user_ldap/l10n/sv.php | 4 +- apps/user_ldap/l10n/ta_LK.php | 4 +- apps/user_ldap/l10n/te.php | 4 +- apps/user_ldap/l10n/th_TH.php | 4 +- apps/user_ldap/l10n/tr.php | 4 +- apps/user_ldap/l10n/ug.php | 4 +- apps/user_ldap/l10n/uk.php | 4 +- apps/user_ldap/l10n/ur_PK.php | 4 +- apps/user_ldap/l10n/vi.php | 4 +- apps/user_ldap/l10n/zh_CN.GB2312.php | 4 +- apps/user_ldap/l10n/zh_CN.php | 4 +- apps/user_ldap/l10n/zh_HK.php | 4 +- apps/user_ldap/l10n/zh_TW.php | 4 +- apps/user_webdavauth/l10n/ar.php | 4 +- apps/user_webdavauth/l10n/bg_BG.php | 4 +- apps/user_webdavauth/l10n/ca.php | 4 +- apps/user_webdavauth/l10n/cs_CZ.php | 4 +- apps/user_webdavauth/l10n/da.php | 4 +- apps/user_webdavauth/l10n/de.php | 4 +- apps/user_webdavauth/l10n/de_DE.php | 4 +- apps/user_webdavauth/l10n/el.php | 4 +- apps/user_webdavauth/l10n/eo.php | 4 +- apps/user_webdavauth/l10n/es.php | 4 +- apps/user_webdavauth/l10n/es_AR.php | 4 +- apps/user_webdavauth/l10n/et_EE.php | 4 +- apps/user_webdavauth/l10n/eu.php | 4 +- apps/user_webdavauth/l10n/fi_FI.php | 4 +- apps/user_webdavauth/l10n/fr.php | 4 +- apps/user_webdavauth/l10n/gl.php | 4 +- apps/user_webdavauth/l10n/he.php | 4 +- apps/user_webdavauth/l10n/hu_HU.php | 4 +- apps/user_webdavauth/l10n/id.php | 4 +- apps/user_webdavauth/l10n/is.php | 4 +- apps/user_webdavauth/l10n/it.php | 4 +- apps/user_webdavauth/l10n/ja_JP.php | 4 +- apps/user_webdavauth/l10n/ka_GE.php | 4 +- apps/user_webdavauth/l10n/ko.php | 4 +- apps/user_webdavauth/l10n/lt_LT.php | 4 +- apps/user_webdavauth/l10n/lv.php | 4 +- apps/user_webdavauth/l10n/nl.php | 4 +- apps/user_webdavauth/l10n/nn_NO.php | 4 +- apps/user_webdavauth/l10n/pl.php | 4 +- apps/user_webdavauth/l10n/pt_BR.php | 4 +- apps/user_webdavauth/l10n/pt_PT.php | 4 +- apps/user_webdavauth/l10n/ro.php | 4 +- apps/user_webdavauth/l10n/ru.php | 4 +- apps/user_webdavauth/l10n/sk_SK.php | 8 +- apps/user_webdavauth/l10n/sl.php | 4 +- apps/user_webdavauth/l10n/sr.php | 4 +- apps/user_webdavauth/l10n/sv.php | 4 +- apps/user_webdavauth/l10n/th_TH.php | 4 +- apps/user_webdavauth/l10n/tr.php | 4 +- apps/user_webdavauth/l10n/ug.php | 4 +- apps/user_webdavauth/l10n/uk.php | 4 +- apps/user_webdavauth/l10n/vi.php | 4 +- apps/user_webdavauth/l10n/zh_CN.php | 4 +- apps/user_webdavauth/l10n/zh_TW.php | 4 +- core/l10n/af_ZA.php | 4 +- core/l10n/ar.php | 4 +- core/l10n/be.php | 4 +- core/l10n/bg_BG.php | 4 +- core/l10n/bn_BD.php | 4 +- core/l10n/bs.php | 4 +- core/l10n/ca.php | 4 +- core/l10n/cs_CZ.php | 4 +- core/l10n/cy_GB.php | 4 +- core/l10n/da.php | 4 +- core/l10n/de.php | 4 +- core/l10n/de_CH.php | 144 +++++++++ core/l10n/de_DE.php | 4 +- core/l10n/el.php | 4 +- core/l10n/en@pirate.php | 4 +- core/l10n/eo.php | 4 +- core/l10n/es.php | 4 +- core/l10n/es_AR.php | 4 +- core/l10n/et_EE.php | 4 +- core/l10n/eu.php | 4 +- core/l10n/fa.php | 4 +- core/l10n/fi.php | 4 +- core/l10n/fi_FI.php | 5 +- core/l10n/fr.php | 4 +- core/l10n/gl.php | 4 +- core/l10n/he.php | 4 +- core/l10n/hi.php | 4 +- core/l10n/hr.php | 4 +- core/l10n/hu_HU.php | 4 +- core/l10n/hy.php | 4 +- core/l10n/ia.php | 4 +- core/l10n/id.php | 4 +- core/l10n/is.php | 4 +- core/l10n/it.php | 4 +- core/l10n/ja_JP.php | 6 +- core/l10n/ka.php | 4 +- core/l10n/ka_GE.php | 4 +- core/l10n/ko.php | 4 +- core/l10n/ku_IQ.php | 4 +- core/l10n/lb.php | 4 +- core/l10n/lt_LT.php | 4 +- core/l10n/lv.php | 4 +- core/l10n/mk.php | 4 +- core/l10n/ms_MY.php | 4 +- core/l10n/my_MM.php | 4 +- core/l10n/nb_NO.php | 4 +- core/l10n/nl.php | 4 +- core/l10n/nn_NO.php | 4 +- core/l10n/oc.php | 4 +- core/l10n/pl.php | 4 +- core/l10n/pl_PL.php | 4 +- core/l10n/pt_BR.php | 4 +- core/l10n/pt_PT.php | 4 +- core/l10n/ro.php | 4 +- core/l10n/ru.php | 4 +- core/l10n/ru_RU.php | 4 +- core/l10n/si_LK.php | 4 +- core/l10n/sk_SK.php | 6 +- core/l10n/sl.php | 4 +- core/l10n/sq.php | 4 +- core/l10n/sr.php | 4 +- core/l10n/sr@latin.php | 4 +- core/l10n/sv.php | 4 +- core/l10n/ta_LK.php | 4 +- core/l10n/te.php | 4 +- core/l10n/th_TH.php | 4 +- core/l10n/tr.php | 4 +- core/l10n/ug.php | 4 +- core/l10n/uk.php | 4 +- core/l10n/ur_PK.php | 4 +- core/l10n/vi.php | 4 +- core/l10n/zh_CN.GB2312.php | 4 +- core/l10n/zh_CN.php | 4 +- core/l10n/zh_HK.php | 4 +- core/l10n/zh_TW.php | 4 +- l10n/af_ZA/files_encryption.po | 10 +- l10n/ar/core.po | 32 +- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 10 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/be/files_encryption.po | 10 +- l10n/bg_BG/core.po | 32 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_encryption.po | 10 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 32 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 10 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/files_encryption.po | 10 +- l10n/ca/core.po | 32 +- l10n/ca/files.po | 4 +- l10n/ca/files_encryption.po | 14 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 32 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 14 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 32 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_encryption.po | 10 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 32 +- l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 12 +- l10n/da/files_trashbin.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 32 +- l10n/de/files.po | 4 +- l10n/de/files_encryption.po | 14 +- l10n/de/files_trashbin.po | 4 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_AT/files_encryption.po | 10 +- l10n/de_CH/core.po | 321 ++++++++++---------- l10n/de_CH/files.po | 172 ++++++----- l10n/de_CH/files_encryption.po | 83 ++--- l10n/de_CH/files_external.po | 55 ++-- l10n/de_CH/files_sharing.po | 39 +-- l10n/de_CH/files_trashbin.po | 42 +-- l10n/de_CH/files_versions.po | 20 +- l10n/de_CH/lib.po | 119 ++++---- l10n/de_CH/settings.po | 241 ++++++++------- l10n/de_CH/user_ldap.po | 187 ++++++------ l10n/de_CH/user_webdavauth.po | 18 +- l10n/de_DE/core.po | 32 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 14 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 32 +- l10n/el/files.po | 4 +- l10n/el/files_encryption.po | 10 +- l10n/el/files_trashbin.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files_encryption.po | 10 +- l10n/eo/core.po | 32 +- l10n/eo/files.po | 4 +- l10n/eo/files_encryption.po | 10 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 32 +- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 12 +- l10n/es/files_trashbin.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 32 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 12 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 32 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_encryption.po | 12 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 32 +- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 12 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 32 +- l10n/fa/files.po | 4 +- l10n/fa/files_encryption.po | 12 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 34 +-- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_encryption.po | 10 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 32 +- l10n/fr/files.po | 4 +- l10n/fr/files_encryption.po | 12 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 32 +- l10n/gl/files.po | 4 +- l10n/gl/files_encryption.po | 14 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 32 +- l10n/he/files.po | 4 +- l10n/he/files_encryption.po | 10 +- l10n/he/files_trashbin.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 32 +- l10n/hi/files.po | 38 +-- l10n/hi/files_encryption.po | 10 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 32 +- l10n/hr/files.po | 4 +- l10n/hr/files_encryption.po | 10 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 32 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_encryption.po | 10 +- l10n/hu_HU/files_sharing.po | 18 +- l10n/hu_HU/files_trashbin.po | 9 +- l10n/hu_HU/files_versions.po | 13 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files_encryption.po | 10 +- l10n/ia/core.po | 32 +- l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 10 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 32 +- l10n/id/files.po | 4 +- l10n/id/files_encryption.po | 10 +- l10n/id/files_trashbin.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 32 +- l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 10 +- l10n/is/files_trashbin.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 32 +- l10n/it/files.po | 4 +- l10n/it/files_encryption.po | 14 +- l10n/it/files_trashbin.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 39 +-- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_encryption.po | 14 +- l10n/ja_JP/files_sharing.po | 18 +- l10n/ja_JP/files_trashbin.po | 9 +- l10n/ja_JP/lib.po | 14 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 11 +- l10n/ka/files_encryption.po | 10 +- l10n/ka_GE/core.po | 32 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_encryption.po | 10 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/files_encryption.po | 10 +- l10n/ko/core.po | 32 +- l10n/ko/files.po | 4 +- l10n/ko/files_encryption.po | 10 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 32 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 10 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 32 +- l10n/lb/files.po | 4 +- l10n/lb/files_encryption.po | 10 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 32 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_encryption.po | 10 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 32 +- l10n/lv/files.po | 4 +- l10n/lv/files_encryption.po | 10 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 32 +- l10n/mk/files.po | 4 +- l10n/mk/files_encryption.po | 10 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ml_IN/files_encryption.po | 10 +- l10n/ms_MY/core.po | 32 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_encryption.po | 10 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/files_encryption.po | 10 +- l10n/nb_NO/core.po | 32 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_encryption.po | 10 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/files_encryption.po | 10 +- l10n/nl/core.po | 32 +- l10n/nl/files.po | 4 +- l10n/nl/files_encryption.po | 12 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 32 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 10 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 32 +- l10n/oc/files.po | 4 +- l10n/oc/files_encryption.po | 10 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 32 +- l10n/pl/files.po | 4 +- l10n/pl/files_encryption.po | 10 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 32 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_encryption.po | 14 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 32 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_encryption.po | 12 +- l10n/pt_PT/files_sharing.po | 19 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 32 +- l10n/ro/files.po | 4 +- l10n/ro/files_encryption.po | 10 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 32 +- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 12 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 32 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_encryption.po | 10 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/files_encryption.po | 10 +- l10n/sk_SK/core.po | 38 +-- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_encryption.po | 10 +- l10n/sk_SK/files_sharing.po | 21 +- l10n/sk_SK/files_trashbin.po | 9 +- l10n/sk_SK/files_versions.po | 13 +- l10n/sk_SK/lib.po | 14 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 22 +- l10n/sk_SK/user_webdavauth.po | 10 +- l10n/sl/core.po | 32 +- l10n/sl/files.po | 4 +- l10n/sl/files_encryption.po | 12 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 32 +- l10n/sq/files.po | 4 +- l10n/sq/files_encryption.po | 10 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 32 +- l10n/sr/files.po | 4 +- l10n/sr/files_encryption.po | 10 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/files_encryption.po | 10 +- l10n/sv/core.po | 32 +- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 14 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/files_encryption.po | 10 +- l10n/ta_LK/core.po | 32 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 10 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 32 +- l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 10 +- l10n/te/files_trashbin.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 30 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 8 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 32 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_encryption.po | 10 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 32 +- l10n/tr/files.po | 4 +- l10n/tr/files_encryption.po | 10 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 32 +- l10n/ug/files.po | 4 +- l10n/ug/files_encryption.po | 10 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 32 +- l10n/uk/files.po | 4 +- l10n/uk/files_encryption.po | 10 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 32 +- l10n/ur_PK/files.po | 38 +-- l10n/ur_PK/files_encryption.po | 10 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 32 +- l10n/vi/files.po | 4 +- l10n/vi/files_encryption.po | 10 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 32 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_encryption.po | 10 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 32 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_encryption.po | 10 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 32 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 10 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 32 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_encryption.po | 12 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/af_ZA.php | 4 +- lib/l10n/ar.php | 4 +- lib/l10n/bg_BG.php | 4 +- lib/l10n/bn_BD.php | 4 +- lib/l10n/ca.php | 4 +- lib/l10n/cs_CZ.php | 4 +- lib/l10n/cy_GB.php | 4 +- lib/l10n/da.php | 4 +- lib/l10n/de.php | 4 +- lib/l10n/de_CH.php | 59 ++++ lib/l10n/de_DE.php | 4 +- lib/l10n/el.php | 4 +- lib/l10n/en@pirate.php | 4 +- lib/l10n/eo.php | 4 +- lib/l10n/es.php | 4 +- lib/l10n/es_AR.php | 4 +- lib/l10n/et_EE.php | 4 +- lib/l10n/eu.php | 4 +- lib/l10n/fa.php | 4 +- lib/l10n/fi.php | 4 +- lib/l10n/fi_FI.php | 4 +- lib/l10n/fr.php | 4 +- lib/l10n/gl.php | 4 +- lib/l10n/he.php | 4 +- lib/l10n/hi.php | 4 +- lib/l10n/hr.php | 4 +- lib/l10n/hu_HU.php | 4 +- lib/l10n/ia.php | 4 +- lib/l10n/id.php | 4 +- lib/l10n/is.php | 4 +- lib/l10n/it.php | 4 +- lib/l10n/ja_JP.php | 8 +- lib/l10n/ka.php | 4 +- lib/l10n/ka_GE.php | 4 +- lib/l10n/ko.php | 4 +- lib/l10n/ku_IQ.php | 4 +- lib/l10n/lb.php | 4 +- lib/l10n/lt_LT.php | 4 +- lib/l10n/lv.php | 4 +- lib/l10n/mk.php | 4 +- lib/l10n/ms_MY.php | 4 +- lib/l10n/my_MM.php | 4 +- lib/l10n/nb_NO.php | 4 +- lib/l10n/nl.php | 4 +- lib/l10n/nn_NO.php | 4 +- lib/l10n/oc.php | 4 +- lib/l10n/pl.php | 4 +- lib/l10n/pl_PL.php | 4 +- lib/l10n/pt_BR.php | 4 +- lib/l10n/pt_PT.php | 4 +- lib/l10n/ro.php | 4 +- lib/l10n/ru.php | 4 +- lib/l10n/ru_RU.php | 4 +- lib/l10n/si_LK.php | 4 +- lib/l10n/sk_SK.php | 8 +- lib/l10n/sl.php | 4 +- lib/l10n/sq.php | 4 +- lib/l10n/sr.php | 4 +- lib/l10n/sr@latin.php | 4 +- lib/l10n/sv.php | 4 +- lib/l10n/ta_LK.php | 4 +- lib/l10n/te.php | 4 +- lib/l10n/th_TH.php | 4 +- lib/l10n/tr.php | 4 +- lib/l10n/ug.php | 4 +- lib/l10n/uk.php | 4 +- lib/l10n/ur_PK.php | 4 +- lib/l10n/vi.php | 4 +- lib/l10n/zh_CN.GB2312.php | 4 +- lib/l10n/zh_CN.php | 4 +- lib/l10n/zh_HK.php | 4 +- lib/l10n/zh_TW.php | 4 +- settings/l10n/af_ZA.php | 4 +- settings/l10n/ar.php | 4 +- settings/l10n/bg_BG.php | 4 +- settings/l10n/bn_BD.php | 4 +- settings/l10n/bs.php | 4 +- settings/l10n/ca.php | 4 +- settings/l10n/cs_CZ.php | 4 +- settings/l10n/cy_GB.php | 4 +- settings/l10n/da.php | 4 +- settings/l10n/de.php | 4 +- settings/l10n/de_CH.php | 118 +++++++ settings/l10n/de_DE.php | 4 +- settings/l10n/el.php | 4 +- settings/l10n/en@pirate.php | 4 +- settings/l10n/eo.php | 4 +- settings/l10n/es.php | 4 +- settings/l10n/es_AR.php | 4 +- settings/l10n/et_EE.php | 4 +- settings/l10n/eu.php | 4 +- settings/l10n/fa.php | 4 +- settings/l10n/fi_FI.php | 4 +- settings/l10n/fr.php | 4 +- settings/l10n/gl.php | 4 +- settings/l10n/he.php | 4 +- settings/l10n/hi.php | 4 +- settings/l10n/hr.php | 4 +- settings/l10n/hu_HU.php | 4 +- settings/l10n/hy.php | 4 +- settings/l10n/ia.php | 4 +- settings/l10n/id.php | 4 +- settings/l10n/is.php | 4 +- settings/l10n/it.php | 4 +- settings/l10n/ja_JP.php | 4 +- settings/l10n/ka.php | 4 +- settings/l10n/ka_GE.php | 4 +- settings/l10n/ko.php | 4 +- settings/l10n/ku_IQ.php | 4 +- settings/l10n/lb.php | 4 +- settings/l10n/lt_LT.php | 4 +- settings/l10n/lv.php | 4 +- settings/l10n/mk.php | 4 +- settings/l10n/ms_MY.php | 4 +- settings/l10n/my_MM.php | 4 +- settings/l10n/nb_NO.php | 4 +- settings/l10n/nl.php | 4 +- settings/l10n/nn_NO.php | 4 +- settings/l10n/oc.php | 4 +- settings/l10n/pl.php | 4 +- settings/l10n/pl_PL.php | 4 +- settings/l10n/pt_BR.php | 4 +- settings/l10n/pt_PT.php | 4 +- settings/l10n/ro.php | 4 +- settings/l10n/ru.php | 4 +- settings/l10n/ru_RU.php | 4 +- settings/l10n/si_LK.php | 4 +- settings/l10n/sk_SK.php | 4 +- settings/l10n/sl.php | 4 +- settings/l10n/sq.php | 4 +- settings/l10n/sr.php | 4 +- settings/l10n/sr@latin.php | 4 +- settings/l10n/sv.php | 4 +- settings/l10n/ta_LK.php | 4 +- settings/l10n/te.php | 4 +- settings/l10n/th_TH.php | 4 +- settings/l10n/tr.php | 4 +- settings/l10n/ug.php | 4 +- settings/l10n/uk.php | 4 +- settings/l10n/ur_PK.php | 4 +- settings/l10n/vi.php | 4 +- settings/l10n/zh_CN.GB2312.php | 4 +- settings/l10n/zh_CN.php | 4 +- settings/l10n/zh_HK.php | 4 +- settings/l10n/zh_TW.php | 4 +- 1143 files changed, 5299 insertions(+), 3444 deletions(-) create mode 100644 core/l10n/de_CH.php create mode 100644 lib/l10n/de_CH.php create mode 100644 settings/l10n/de_CH.php diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index e000bc966c1..878bb2eefb2 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -1,4 +1,5 @@ - "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s" => "فشل في نقل %s", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", @@ -69,3 +70,4 @@ "Current scanning" => "الفحص الحالي", "Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." ); +$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;"; diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index f4424f92577..47f73206799 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Файлът е качен успешно", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", "The uploaded file was only partially uploaded" => "Файлът е качен частично", @@ -39,3 +40,4 @@ "Files are being scanned, please wait." => "Файловете се претърсват, изчакайте.", "file" => "файл" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 6d755bccc8a..288b1477bfb 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", @@ -61,3 +62,4 @@ "Files are being scanned, please wait." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", "Current scanning" => "বর্তমান স্ক্যানিং" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8d5f69f3318..8d8469fbea4 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", "Unable to set upload directory." => "No es pot establir la carpeta de pujada.", @@ -79,3 +80,4 @@ "files" => "fitxers", "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index e87872a4a09..ba94b9c5acc 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", @@ -79,3 +80,4 @@ "files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 0aab1a18bc5..dc50b9cc3f5 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s" => "Methwyd symud %s", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", @@ -71,3 +72,4 @@ "Current scanning" => "Sganio cyfredol", "Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 3dd82fadba5..f066b702b3f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", "Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", @@ -79,3 +80,4 @@ "files" => "filer", "Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 33430795ddd..c89294bc092 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,5 @@ - "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", @@ -79,3 +80,4 @@ "files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3ce3b2a7fb5..6a4cbcef069 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,5 @@ - "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", @@ -79,3 +80,4 @@ "files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 219cf87c33d..0246ba2a89d 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,5 @@ - "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", "Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", @@ -79,3 +80,4 @@ "files" => "αρχεία", "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php index fdd1850da90..339f94ae973 100644 --- a/apps/files/l10n/en@pirate.php +++ b/apps/files/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "Download" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 561545ec6ae..726abb13343 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ - "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s" => "Ne eblis movi %s", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", @@ -74,3 +75,4 @@ "files" => "dosieroj", "Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 78740d51507..407a783a85e 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,5 @@ - "No se pudo mover %s - Un archivo con ese nombre ya existe.", "Could not move %s" => "No se pudo mover %s", "Unable to set upload directory." => "Incapaz de crear directorio de subida.", @@ -79,3 +80,4 @@ "files" => "archivos", "Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 3fc3be17982..fd422ab1d95 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,5 @@ - "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", "Unable to set upload directory." => "No fue posible crear el directorio de subida.", @@ -79,3 +80,4 @@ "files" => "archivos", "Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index c58b066e287..e6a643fbadf 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", "Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", @@ -79,3 +80,4 @@ "files" => "faili", "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 96bfb2d1cc8..740f53d4e9a 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", "Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", @@ -79,3 +80,4 @@ "files" => "fitxategiak", "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 73f4b493b4d..9670afdd051 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ - "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", "Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", @@ -79,3 +80,4 @@ "files" => "پرونده ها", "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/fi.php b/apps/files/l10n/fi.php index c5ce878aded..43770829397 100644 --- a/apps/files/l10n/fi.php +++ b/apps/files/l10n/fi.php @@ -1,3 +1,5 @@ - "tallentaa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 40df7b1546e..2d1bf8c4e3f 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", @@ -71,3 +72,4 @@ "files" => "tiedostoa", "Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index b293f85ed42..ad79a9f4999 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.", @@ -79,3 +80,4 @@ "files" => "fichiers", "Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index bba6335ae05..02bbad53e43 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,5 @@ - "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", "Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", @@ -79,3 +80,4 @@ "files" => "ficheiros", "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 52946bc6d0b..8af6b0852ee 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים", "Could not move %s" => "לא ניתן להעביר את %s", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", @@ -63,3 +64,4 @@ "file" => "קובץ", "files" => "קבצים" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 151d1f497c7..48e2194256d 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,5 +1,7 @@ - "त्रुटि", "Share" => "साझा करें", "Save" => "सहेजें" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index abe8c40bd53..6bc6904041a 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -1,4 +1,5 @@ - "Nema pogreške, datoteka je poslana uspješno.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi", "The uploaded file was only partially uploaded" => "Poslana datoteka je parcijalno poslana", @@ -46,3 +47,4 @@ "file" => "datoteka", "files" => "datoteke" ); +$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;"; diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index b0833516958..061fb27f0f5 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", @@ -79,3 +80,4 @@ "files" => "fájlok", "Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 22edf32c6e6..101734c01dd 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,5 +1,7 @@ - "Ջնջել", "Save" => "Պահպանել", "Download" => "Բեռնել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 5970a4cd55a..2ccd559469d 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -1,4 +1,5 @@ - "Le file incargate solmente esseva incargate partialmente", "No file was uploaded" => "Nulle file esseva incargate.", "Missing a temporary folder" => "Manca un dossier temporari", @@ -19,3 +20,4 @@ "Download" => "Discargar", "Upload too large" => "Incargamento troppo longe" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index bacdcc8f496..4b6bf8a32b9 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", @@ -73,3 +74,4 @@ "files" => "berkas-berkas", "Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 97b19ae9379..8a131b20c8f 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,5 @@ - "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", @@ -61,3 +62,4 @@ "Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", "Current scanning" => "Er að skima" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 28b33795aeb..e5e4bd03bb3 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", "Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.", @@ -79,3 +80,4 @@ "files" => "file", "Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index e4be3133fb0..0902353a171 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", "Unable to set upload directory." => "アップロードディレクトリを設定出来ません。", @@ -79,3 +80,4 @@ "files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka.php b/apps/files/l10n/ka.php index 148e688547a..bbc70614cfc 100644 --- a/apps/files/l10n/ka.php +++ b/apps/files/l10n/ka.php @@ -1,4 +1,6 @@ - "ფაილები", "Download" => "გადმოწერა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index b04e1b4536d..f6bf618106a 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", @@ -71,3 +72,4 @@ "Current scanning" => "მიმდინარე სკანირება", "Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 069c209ee58..d68fb162d07 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,5 @@ - "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", "Could not move %s" => "%s 항목을 이딩시키지 못하였음", "No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", @@ -73,3 +74,4 @@ "files" => "파일", "Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 7b36c3b710b..ad85edaa0de 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Error" => "هه‌ڵه", "Name" => "ناو", @@ -7,3 +8,4 @@ "Folder" => "بوخچه", "Download" => "داگرتن" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 9b209a4d5cc..762d9189fb8 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -1,4 +1,5 @@ - "Keen Feeler, Datei ass komplett ropgelueden ginn", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass", "The uploaded file was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn", @@ -41,3 +42,4 @@ "file" => "Datei", "files" => "Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 43fb4657dbb..c2d0fee6e6e 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja", "Could not move %s" => "Nepavyko perkelti %s", "No file was uploaded. Unknown error" => "Failai nebuvo įkelti dėl nežinomos priežasties", @@ -74,3 +75,4 @@ "files" => "failai", "Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index b0def1e707d..24161cb2a69 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s" => "Nevarēja pārvietot %s", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", @@ -72,3 +73,4 @@ "files" => "faili", "Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 2dd75f14338..a922876553b 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ - "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Датотеката беше успешно подигната.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", @@ -56,3 +57,4 @@ "file" => "датотека", "files" => "датотеки" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index f96d4d48014..48ef8587cab 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Tiada fail dimuatnaik. Ralat tidak diketahui.", "There is no error, the file uploaded with success" => "Tiada ralat berlaku, fail berjaya dimuatnaik", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML", @@ -40,3 +41,4 @@ "file" => "fail", "files" => "fail" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/my_MM.php b/apps/files/l10n/my_MM.php index b791a134ccc..c94cc5fd6f4 100644 --- a/apps/files/l10n/my_MM.php +++ b/apps/files/l10n/my_MM.php @@ -1,4 +1,6 @@ - "ဖိုင်များ", "Download" => "ဒေါင်းလုတ်" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index d4080a17960..15104914fd8 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", "Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", @@ -77,3 +78,4 @@ "files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 0d906cb138b..d0f6542f1fe 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,5 @@ - "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s" => "Kon %s niet verplaatsen", "Unable to set upload directory." => "Kan upload map niet instellen.", @@ -79,3 +80,4 @@ "files" => "bestanden", "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index dcc3373bea0..2e1a5a5cfcb 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", @@ -72,3 +73,4 @@ "Current scanning" => "Køyrande skanning", "Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 703aeb3fbad..382a4b2158b 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -1,4 +1,5 @@ - "Amontcargament capitat, pas d'errors", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML", "The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat", @@ -46,3 +47,4 @@ "file" => "fichièr", "files" => "fichièrs" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index a3acfea6618..fc37234fc66 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", @@ -79,3 +80,4 @@ "files" => "pliki", "Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/pl_PL.php b/apps/files/l10n/pl_PL.php index 157d9a41e4d..b67f67b972e 100644 --- a/apps/files/l10n/pl_PL.php +++ b/apps/files/l10n/pl_PL.php @@ -1,3 +1,5 @@ - "Zapisz" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 3ad679f8764..421de07c2b7 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s" => "Impossível mover %s", "Unable to set upload directory." => "Impossível configurar o diretório de upload", @@ -79,3 +80,4 @@ "files" => "arquivos", "Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8aeb30efbf2..c9b98bbed49 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", "Unable to set upload directory." => "Não foi possível criar o diretório de upload", @@ -79,3 +80,4 @@ "files" => "ficheiros", "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b0cca7d7a82..c9b340ff9be 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,5 @@ - "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", @@ -79,3 +80,4 @@ "files" => "fișiere", "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71742cb4d57..4d3bec02742 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,5 @@ - "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "Unable to set upload directory." => "Не удалось установить каталог загрузки.", @@ -79,3 +80,4 @@ "files" => "файлы", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." ); +$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);"; diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index e0bfab33215..bbc06fe1a5c 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,4 +1,5 @@ - "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Ошибки нет, файл успешно загружен", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загружаемого файла превысил максимально допустимый в директиве MAX_FILE_SIZE, специфицированной в HTML-форме", @@ -14,3 +15,4 @@ "Save" => "Сохранить", "Download" => "Загрузка" ); +$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);"; diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 82fca4bc75d..4f576af17e5 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ - "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්", "There is no error, the file uploaded with success" => "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", @@ -48,3 +49,4 @@ "file" => "ගොනුව", "files" => "ගොනු" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index ac71f30e907..f0220822d0a 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", "Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", @@ -79,3 +80,4 @@ "files" => "súbory", "Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index bb01e5475d5..85daabf6cf1 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ - "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", "Could not move %s" => "Ni mogoče premakniti %s", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", @@ -79,3 +80,4 @@ "files" => "datoteke", "Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 2daca10a416..91f53fc00bb 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -1,4 +1,5 @@ - "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", "Could not move %s" => "%s nuk u spostua", "No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", @@ -71,3 +72,4 @@ "Current scanning" => "Analizimi aktual", "Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 68f2f5a93b6..09d1683a915 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,5 @@ - "Не могу да преместим %s – датотека с овим именом већ постоји", "Could not move %s" => "Не могу да преместим %s", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", @@ -71,3 +72,4 @@ "Current scanning" => "Тренутно скенирање", "Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" ); +$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);"; diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index fb08bca2cae..5b425aaa963 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -1,4 +1,5 @@ - "Nema greške, fajl je uspešno poslat", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi", "The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!", @@ -17,3 +18,4 @@ "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." ); +$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);"; diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 70f3121a20c..41206423cfe 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ - "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", "Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.", @@ -79,3 +80,4 @@ "files" => "filer", "Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index e03b88569b7..616248d87b9 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", @@ -53,3 +54,4 @@ "Files are being scanned, please wait." => "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்.", "Current scanning" => "தற்போது வருடப்படுபவை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index 710034de12e..bb729b0187e 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -1,4 +1,5 @@ - "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Delete" => "తొలగించు", @@ -8,3 +9,4 @@ "Save" => "భద్రపరచు", "Folder" => "సంచయం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 5b2eab6b3a1..b480237008b 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s" => "ไม่สามารถย้าย %s ได้", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", @@ -70,3 +71,4 @@ "files" => "ไฟล์", "Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 6b479b580eb..351b23cb951 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ - "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s" => "%s taşınamadı", "Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", @@ -79,3 +80,4 @@ "files" => "dosyalar", "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index c11ffe7b9bf..819b46c50c2 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -1,4 +1,5 @@ - "%s يۆتكىيەلمەيدۇ", "No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق", "No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى", @@ -41,3 +42,4 @@ "Upload too large" => "يۈكلەندىغىنى بەك چوڭ", "Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 261853ef202..3cb4f00029d 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s" => "Не вдалося перемістити %s", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", @@ -73,3 +74,4 @@ "files" => "файли", "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." ); +$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);"; diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php index aa87eeda385..1f083455369 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,4 +1,6 @@ - "ایرر", "Unshare" => "شئیرنگ ختم کریں" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index e3c9fd5488a..4d0240c9baa 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", @@ -73,3 +74,4 @@ "files" => "files", "Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 469211ca7f4..9b08b5dda22 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "无法移动 %s - 存在同名文件", "Could not move %s" => "无法移动 %s", "Unable to set upload directory." => "无法设置上传文件夹", @@ -79,3 +80,4 @@ "files" => "文件", "Upgrading filesystem cache..." => "升级系统缓存..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 68680676a19..d4bf220590b 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", "Unable to set upload directory." => "无法设置上传文件夹。", @@ -77,3 +78,4 @@ "files" => "文件", "Upgrading filesystem cache..." => "正在更新文件系统缓存..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 4402812f2b6..1f309d9b2f6 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,4 +1,5 @@ - "文件", "Error" => "錯誤", "Share" => "分享", @@ -10,3 +11,4 @@ "Download" => "下載", "Unshare" => "取消分享" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 63d2bd92365..6e0dd54fddc 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法移動 %s - 同名的檔案已經存在", "Could not move %s" => "無法移動 %s", "Unable to set upload directory." => "無法設定上傳目錄。", @@ -79,3 +80,4 @@ "files" => "檔案", "Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ar.php b/apps/files_encryption/l10n/ar.php index 1adc158c6b8..45a0c4616f4 100644 --- a/apps/files_encryption/l10n/ar.php +++ b/apps/files_encryption/l10n/ar.php @@ -1,4 +1,6 @@ - "جاري الحفظ...", "Encryption" => "التشفير" ); +$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;"; diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php index f21f7641c1a..9060c92ed43 100644 --- a/apps/files_encryption/l10n/bg_BG.php +++ b/apps/files_encryption/l10n/bg_BG.php @@ -1,4 +1,6 @@ - "Записване...", "Encryption" => "Криптиране" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 068de46e7a1..5fc4f6a13f3 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,4 +1,6 @@ - "সংরক্ষণ করা হচ্ছে..", "Encryption" => "সংকেতায়ন" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index d9d3d7b4fa5..c7581fa6046 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -1,4 +1,5 @@ - "La clau de recuperació s'ha activat", "Could not enable recovery key. Please check your recovery key password!" => "No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!", "Recovery key successfully disabled" => "La clau de recuperació s'ha descativat", @@ -9,7 +10,7 @@ "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", "Missing requirements." => "Manca de requisits.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada.", +"Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", @@ -34,3 +35,4 @@ "File recovery settings updated" => "S'han actualitzat els arranjaments de recuperació de fitxers", "Could not update file recovery" => "No s'ha pogut actualitzar la recuperació de fitxers" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index fcf0287f04f..8bd47239385 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Záchranný klíč byl úspěšně povolen", "Could not enable recovery key. Please check your recovery key password!" => "Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!", "Recovery key successfully disabled" => "Záchranný klíč byl úspěšně zakázán", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 či novější s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Možnosti záchrany souborů aktualizovány", "Could not update file recovery" => "Nelze nastavit záchranu souborů" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_encryption/l10n/cy_GB.php b/apps/files_encryption/l10n/cy_GB.php index 6e18a7913c8..ea8b19963b0 100644 --- a/apps/files_encryption/l10n/cy_GB.php +++ b/apps/files_encryption/l10n/cy_GB.php @@ -1,4 +1,6 @@ - "Yn cadw...", "Encryption" => "Amgryptiad" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 609137cf193..19e6b1d2e8c 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -1,4 +1,5 @@ - "Gendannelsesnøgle aktiveret med succes", "Could not enable recovery key. Please check your recovery key password!" => "Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!", "Recovery key successfully disabled" => "Gendannelsesnøgle deaktiveret succesfuldt", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer.", "Missing requirements." => "Manglende betingelser.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sikker dig venligst at PHP 5.3.3 eller nyere er installeret og at OpenSSL PHP udvidelsen er aktiveret og konfigureret korrekt. Indtil videre er krypterings app'en deaktiveret. ", "Saving..." => "Gemmer...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.", "You can unlock your private key in your " => "Du kan låse din private nøgle op i din ", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Filgendannelsesindstillinger opdateret", "Could not update file recovery" => "Kunne ikke opdatere filgendannelse" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 69b15aa00a8..53c7984001e 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -1,4 +1,5 @@ - "Wiederherstellungsschlüssel wurde erfolgreich aktiviert", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!", "Recovery key successfully disabled" => "Wiederherstellungsschlüssel deaktiviert.", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert", "Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 5a20b2093cd..5773c35c0c1 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", "Recovery key successfully disabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 990f464bc1a..70f778f0a50 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -1,4 +1,5 @@ - "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Saving..." => "Γίνεται αποθήκευση...", @@ -9,3 +10,4 @@ "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", "File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index 997b60f8ac3..d6881253022 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -1,4 +1,5 @@ - "La pasvorto sukcese ŝanĝiĝis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", @@ -13,3 +14,4 @@ "Current log-in password" => "Nuna ensaluta pasvorto", "Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 0b49edbd2af..8341bafc9fd 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -1,4 +1,5 @@ - "Se ha habilitado la recuperación de archivos", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL 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 posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index f53bbd437c4..cac8c465362 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Se habilitó la recuperación de archivos", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.", "Missing requirements." => "Requisitos incompletos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas", "Could not update file recovery" => "No fue posible actualizar la recuperación de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index c1c8164b810..fd36a6fb9d6 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Taastevõtme lubamine õnnestus", "Could not enable recovery key. Please check your recovery key password!" => "Ei suutnud lubada taastevõtit. Palun kontrolli oma taastevõtme parooli!", "Recovery key successfully disabled" => "Taastevõtme keelamine õnnestus", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Missing requirements." => "Nõutavad on puudu.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud.", "Saving..." => "Salvestamine...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", "You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Faili taaste seaded uuendatud", "Could not update file recovery" => "Ei suuda uuendada taastefaili" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 307cd385e7e..e750c850688 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,4 +1,5 @@ - "Berreskuratze gakoa behar bezala gaitua", "Could not enable recovery key. Please check your recovery key password!" => "Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!", "Recovery key successfully disabled" => "Berreskuratze gakoa behar bezala desgaitu da", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", "Missing requirements." => "Eskakizun batzuk ez dira betetzen.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ziurtatu PHP 5.3.3 edo berriagoa instalatuta dagoela eta PHPren OpenSSL gehigarria gaituta eta ongi konfiguratuta dagoela. Oraingoz enkriptazio programa ez dago gaituta.", "Saving..." => "Gordetzen...", "Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.", "You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Fitxategi berreskuratze ezarpenak eguneratuak", "Could not update file recovery" => "Ezin da fitxategi berreskuratzea eguneratu" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index 8967ca1eed8..461ec2b92cb 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -1,4 +1,5 @@ - "کلید بازیابی با موفقیت فعال شده است.", "Could not enable recovery key. Please check your recovery key password!" => "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!", "Recovery key successfully disabled" => "کلید بازیابی با موفقیت غیر فعال شده است.", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.", "Missing requirements." => "نیازمندی های گمشده", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است.", "Saving..." => "در حال ذخیره سازی...", "Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", "You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", @@ -34,3 +34,4 @@ "File recovery settings updated" => "تنظیمات بازیابی فایل به روز شده است.", "Could not update file recovery" => "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index a00cc8ab96e..53b0a6b25cd 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Salasana vaihdettiin onnistuneesti.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", "Saving..." => "Tallennetaan...", @@ -7,3 +8,4 @@ "Disabled" => "Ei käytössä", "Change Password" => "Vaihda salasana" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 174932d6e8a..12af8101394 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -1,4 +1,5 @@ - "Clé de récupération activée avec succès", "Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", "Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", "Missing requirements." => "Système minimum requis non respecté.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 7b3ad526734..63f111bd65d 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -1,4 +1,5 @@ - "Activada satisfactoriamente a chave de recuperación", "Could not enable recovery key. Please check your recovery key password!" => "Non foi posíbel activar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!", "Recovery key successfully disabled" => "Desactivada satisfactoriamente a chave de recuperación", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Actualizouse o ficheiro de axustes de recuperación", "Could not update file recovery" => "Non foi posíbel actualizar o ficheiro de recuperación" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php index 7a80cfa2f9f..cdf29c9b0ac 100644 --- a/apps/files_encryption/l10n/he.php +++ b/apps/files_encryption/l10n/he.php @@ -1,4 +1,6 @@ - "שמירה…", "Encryption" => "הצפנה" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/hr.php b/apps/files_encryption/l10n/hr.php index 9b9284ddc5e..60ee610bd3e 100644 --- a/apps/files_encryption/l10n/hr.php +++ b/apps/files_encryption/l10n/hr.php @@ -1,3 +1,5 @@ - "Spremanje..." ); +$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;"; diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index bf95c31f2c5..49dcf817fb7 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,4 +1,6 @@ - "Mentés...", "Encryption" => "Titkosítás" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/id.php b/apps/files_encryption/l10n/id.php index ad827b53791..32c348bd8ba 100644 --- a/apps/files_encryption/l10n/id.php +++ b/apps/files_encryption/l10n/id.php @@ -1,4 +1,6 @@ - "Menyimpan...", "Encryption" => "Enkripsi" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php index 0f98c6bd3bf..27c0904a532 100644 --- a/apps/files_encryption/l10n/is.php +++ b/apps/files_encryption/l10n/is.php @@ -1,4 +1,6 @@ - "Er að vista ...", "Encryption" => "Dulkóðun" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index db1a1b1709a..09a562a64b3 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -1,4 +1,5 @@ - "Chiave di ripristino abilitata correttamente", "Could not enable recovery key. Please check your recovery key password!" => "Impossibile abilitare la chiave di ripristino. Verifica la password della chiave di ripristino.", "Recovery key successfully disabled" => "Chiave di ripristinata disabilitata correttamente", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Missing requirements." => "Requisiti mancanti.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Impostazioni di ripristino dei file aggiornate", "Could not update file recovery" => "Impossibile aggiornare il ripristino dei file" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index a1fcbd5c544..4490fcddfcc 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "リカバリ用のキーは正常に有効化されました", "Could not enable recovery key. Please check your recovery key password!" => "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認して下さい!", "Recovery key successfully disabled" => "リカバリ用のキーを正常に無効化しました", @@ -9,7 +10,7 @@ "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", "Missing requirements." => "必要要件が満たされていません。", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。", +"Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", "You can unlock your private key in your " => "個人設定で", @@ -34,3 +35,4 @@ "File recovery settings updated" => "ファイル復旧設定が更新されました", "Could not update file recovery" => "ファイル復旧を更新できませんでした" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ka_GE.php b/apps/files_encryption/l10n/ka_GE.php index 55a59f44341..bbabd449648 100644 --- a/apps/files_encryption/l10n/ka_GE.php +++ b/apps/files_encryption/l10n/ka_GE.php @@ -1,4 +1,6 @@ - "შენახვა...", "Encryption" => "ენკრიპცია" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index 52e0997ef7b..cfe9f99fa19 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -1,4 +1,5 @@ - "암호가 성공적으로 변경되었습니다", "Could not change the password. Maybe the old password was not correct." => "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다.", "Private key password successfully updated." => "개인키 암호가 성공적으로 업데이트 됨.", @@ -16,3 +17,4 @@ "File recovery settings updated" => "파일 복구 설정 업데이트됨", "Could not update file recovery" => "파일 복구를 업데이트 할수 없습니다" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php index 61b720372ec..d971350b4c7 100644 --- a/apps/files_encryption/l10n/ku_IQ.php +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -1,4 +1,6 @@ - "پاشکه‌وتده‌کات...", "Encryption" => "نهێنیکردن" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/lb.php b/apps/files_encryption/l10n/lb.php index 77bad681732..a33f4969b09 100644 --- a/apps/files_encryption/l10n/lb.php +++ b/apps/files_encryption/l10n/lb.php @@ -1,3 +1,5 @@ - "Speicheren..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 84fa902dc65..9fbf7b29604 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Atkūrimo raktas sėkmingai įjungtas", "Could not enable recovery key. Please check your recovery key password!" => "Neišėjo įjungti jūsų atkūrimo rakto. Prašome jį patikrinti!", "Recovery key successfully disabled" => "Atkūrimo raktas sėkmingai išjungtas", @@ -13,3 +14,4 @@ "File recovery settings updated" => "Failų atstatymo nustatymai pakeisti", "Could not update file recovery" => "Neišėjo atnaujinti failų atkūrimo" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index 04922854ceb..b8414174a74 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -1,4 +1,6 @@ - "Saglabā...", "Encryption" => "Šifrēšana" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/mk.php b/apps/files_encryption/l10n/mk.php index a7216f205ad..fd8dd4e51c1 100644 --- a/apps/files_encryption/l10n/mk.php +++ b/apps/files_encryption/l10n/mk.php @@ -1,4 +1,6 @@ - "Снимам...", "Encryption" => "Енкрипција" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_encryption/l10n/ms_MY.php b/apps/files_encryption/l10n/ms_MY.php index bb963cb72d2..f73e61c1674 100644 --- a/apps/files_encryption/l10n/ms_MY.php +++ b/apps/files_encryption/l10n/ms_MY.php @@ -1,3 +1,5 @@ - "Simpan..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/nb_NO.php b/apps/files_encryption/l10n/nb_NO.php index d4e2b1ffb50..26956c410a3 100644 --- a/apps/files_encryption/l10n/nb_NO.php +++ b/apps/files_encryption/l10n/nb_NO.php @@ -1,4 +1,6 @@ - "Lagrer...", "Encryption" => "Kryptering" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 9cf7bcd1721..8a94b806ac4 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -1,4 +1,5 @@ - "Herstelsleutel succesvol geactiveerd", "Could not enable recovery key. Please check your recovery key password!" => "Kon herstelsleutel niet activeren. Controleer het wachtwoord van uw herstelsleutel!", "Recovery key successfully disabled" => "Herstelsleutel succesvol gedeactiveerd", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.", "Missing requirements." => "Missende benodigdheden.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Bestandsherstel instellingen bijgewerkt", "Could not update file recovery" => "Kon bestandsherstel niet bijwerken" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/nn_NO.php b/apps/files_encryption/l10n/nn_NO.php index 97b3a27a9d0..b99d0751540 100644 --- a/apps/files_encryption/l10n/nn_NO.php +++ b/apps/files_encryption/l10n/nn_NO.php @@ -1,3 +1,5 @@ - "Lagrar …" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/oc.php b/apps/files_encryption/l10n/oc.php index 0a34c4cda12..87d1e6ceffb 100644 --- a/apps/files_encryption/l10n/oc.php +++ b/apps/files_encryption/l10n/oc.php @@ -1,3 +1,5 @@ - "Enregistra..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 3928afb1d5c..66c06c60882 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -1,4 +1,5 @@ - "Klucz odzyskiwania włączony", "Could not enable recovery key. Please check your recovery key password!" => "Nie można włączyć klucza odzyskiwania. Proszę sprawdzić swoje hasło odzyskiwania!", "Recovery key successfully disabled" => "Klucz odzyskiwania wyłączony", @@ -31,3 +32,4 @@ "File recovery settings updated" => "Ustawienia odzyskiwania plików zmienione", "Could not update file recovery" => "Nie można zmienić pliku odzyskiwania" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 073201d06b1..9e8122b9ced 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Recuperação de chave habilitada com sucesso", "Could not enable recovery key. Please check your recovery key password!" => "Impossível habilitar recuperação de chave. Por favor verifique sua senha para recuperação de chave!", "Recovery key successfully disabled" => "Recuperação de chave desabilitada com sucesso", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos não encontrados.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitada e configurada corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Configurações de recuperação de arquivo atualizado", "Could not update file recovery" => "Não foi possível atualizar a recuperação de arquivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 15a9ee6de63..53335ab7297 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Chave de recuperação activada com sucesso", "Could not enable recovery key. Please check your recovery key password!" => "Não foi possível activar a chave de recuperação. Por favor verifique a password da chave de recuperação!", "Recovery key successfully disabled" => "Chave de recuperação descativada com sucesso", @@ -8,7 +9,6 @@ "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.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", "Missing requirements." => "Faltam alguns requisitos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado.", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", @@ -27,3 +27,4 @@ "File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros", "Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ro.php b/apps/files_encryption/l10n/ro.php index 9e04b627c42..3dcdce32418 100644 --- a/apps/files_encryption/l10n/ro.php +++ b/apps/files_encryption/l10n/ro.php @@ -1,4 +1,6 @@ - "Se salvează...", "Encryption" => "Încriptare" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 5bb803de2d0..76fd8c5ba53 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,4 +1,5 @@ - "Ключ восстановления успешно установлен", "Could not enable recovery key. Please check your recovery key password!" => "Невозможно включить ключ восстановления. Проверьте правильность пароля от ключа!", "Recovery key successfully disabled" => "Ключ восстановления успешно отключен", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. ", "Missing requirements." => "Требования отсутствуют.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено.", "Saving..." => "Сохранение...", "Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", "You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Настройки файла восстановления обновлены", "Could not update file recovery" => "Невозможно обновить файл восстановления" ); +$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);"; diff --git a/apps/files_encryption/l10n/ru_RU.php b/apps/files_encryption/l10n/ru_RU.php index 1351f63f89b..438e6fb5e97 100644 --- a/apps/files_encryption/l10n/ru_RU.php +++ b/apps/files_encryption/l10n/ru_RU.php @@ -1,3 +1,5 @@ - "Сохранение" ); +$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);"; diff --git a/apps/files_encryption/l10n/si_LK.php b/apps/files_encryption/l10n/si_LK.php index 6c678bb3a4f..5f5330df547 100644 --- a/apps/files_encryption/l10n/si_LK.php +++ b/apps/files_encryption/l10n/si_LK.php @@ -1,4 +1,6 @@ - "සුරැකෙමින් පවතී...", "Encryption" => "ගුප්ත කේතනය" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index d8894e53706..a723d80773b 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Záchranný kľúč bol úspešne povolený", "Could not enable recovery key. Please check your recovery key password!" => "Nepodarilo sa povoliť záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!", "Recovery key successfully disabled" => "Záchranný kľúč bol úspešne zakázaný", @@ -25,3 +26,4 @@ "File recovery settings updated" => "Nastavenie obnovy súborov aktualizované", "Could not update file recovery" => "Nemožno aktualizovať obnovenie súborov" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 016937c1415..e5a0cf269b1 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,4 +1,5 @@ - "Ključ za obnovitev gesla je bil uspešno nastavljen", "Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!", "Recovery key successfully disabled" => "Ključ za obnovitev gesla je bil uspešno onemogočen", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", "Missing requirements." => "Manjkajoče zahteve", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", "Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_encryption/l10n/sr.php b/apps/files_encryption/l10n/sr.php index a36e37c1790..cbf87dcf4d2 100644 --- a/apps/files_encryption/l10n/sr.php +++ b/apps/files_encryption/l10n/sr.php @@ -1,4 +1,6 @@ - "Чување у току...", "Encryption" => "Шифровање" ); +$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);"; diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 785d46cdc76..ce43d7d5cf1 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -1,4 +1,5 @@ - "Återställningsnyckeln har framgångsrikt aktiverats", "Could not enable recovery key. Please check your recovery key password!" => "Kunde inte aktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!", "Recovery key successfully disabled" => "Återställningsnyckeln har framgångsrikt inaktiverats", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", @@ -35,3 +35,4 @@ "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", "Could not update file recovery" => "Kunde inte uppdatera filåterställning" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ta_LK.php b/apps/files_encryption/l10n/ta_LK.php index 63fe9ecde86..9dec6de3acb 100644 --- a/apps/files_encryption/l10n/ta_LK.php +++ b/apps/files_encryption/l10n/ta_LK.php @@ -1,4 +1,6 @@ - "சேமிக்கப்படுகிறது...", "Encryption" => "மறைக்குறியீடு" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/th_TH.php b/apps/files_encryption/l10n/th_TH.php index 6cab4370ccf..7bf3e2765aa 100644 --- a/apps/files_encryption/l10n/th_TH.php +++ b/apps/files_encryption/l10n/th_TH.php @@ -1,4 +1,6 @@ - "กำลังบันทึกข้อมูล...", "Encryption" => "การเข้ารหัส" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index 24c6fa47278..7fdda1a5bf6 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -1,4 +1,5 @@ - "Kurtarma anahtarı başarıyla etkinleştirildi", "Could not enable recovery key. Please check your recovery key password!" => "Kurtarma anahtarı etkinleştirilemedi. Lütfen kurtarma anahtarı parolanızı kontrol edin!", "Recovery key successfully disabled" => "Kurtarma anahtarı başarıyla devre dışı bırakıldı", @@ -13,3 +14,4 @@ "File recovery settings updated" => "Dosya kurtarma ayarları güncellendi", "Could not update file recovery" => "Dosya kurtarma güncellenemedi" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/ug.php b/apps/files_encryption/l10n/ug.php index 954d95b4132..25b3f68634b 100644 --- a/apps/files_encryption/l10n/ug.php +++ b/apps/files_encryption/l10n/ug.php @@ -1,4 +1,6 @@ - "ساقلاۋاتىدۇ…", "Encryption" => "شىفىرلاش" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/uk.php b/apps/files_encryption/l10n/uk.php index 1c176a39142..680beddfe68 100644 --- a/apps/files_encryption/l10n/uk.php +++ b/apps/files_encryption/l10n/uk.php @@ -1,4 +1,6 @@ - "Зберігаю...", "Encryption" => "Шифрування" ); +$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);"; diff --git a/apps/files_encryption/l10n/vi.php b/apps/files_encryption/l10n/vi.php index d11569bb94c..18882be63a1 100644 --- a/apps/files_encryption/l10n/vi.php +++ b/apps/files_encryption/l10n/vi.php @@ -1,4 +1,5 @@ - "Đã đổi mật khẩu.", "Could not change the password. Maybe the old password was not correct." => "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đúng.", "Saving..." => "Đang lưu...", @@ -7,3 +8,4 @@ "Disabled" => "Tắt", "Change Password" => "Đổi Mật khẩu" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php index 3c405a81ace..0f9f459c771 100644 --- a/apps/files_encryption/l10n/zh_CN.GB2312.php +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -1,4 +1,6 @@ - "保存中...", "Encryption" => "加密" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index a3939165c7a..c4c52f4ac2e 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "恢复密钥成功启用", "Could not enable recovery key. Please check your recovery key password!" => "不能启用恢复密钥。请检查恢复密钥密码!", "Recovery key successfully disabled" => "恢复密钥成功禁用", @@ -32,3 +33,4 @@ "File recovery settings updated" => "文件恢复设置已更新", "Could not update file recovery" => "不能更新文件恢复" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_HK.php b/apps/files_encryption/l10n/zh_HK.php index 0a38a2ddf85..edbeb0f1c66 100644 --- a/apps/files_encryption/l10n/zh_HK.php +++ b/apps/files_encryption/l10n/zh_HK.php @@ -1,3 +1,5 @@ - "加密" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index cc43ec37a43..02dc49cc3d9 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -1,8 +1,8 @@ - "成功變更密碼。", "Could not change the password. Maybe the old password was not correct." => "無法變更密碼,或許是輸入的舊密碼不正確。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "請確認已安裝 PHP 5.3.3 或更新的版本並啟用 OpenSSL PHP 且正確設定。目前 encryption app 不可使用。", "Saving..." => "儲存中...", "Encryption" => "加密", "Enabled" => "已啓用", @@ -14,3 +14,4 @@ "File recovery settings updated" => "檔案還原設定已更新", "Could not update file recovery" => "無法更新檔案還原設定" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/af_ZA.php b/apps/files_external/l10n/af_ZA.php index cf9b951828d..261c44310fd 100644 --- a/apps/files_external/l10n/af_ZA.php +++ b/apps/files_external/l10n/af_ZA.php @@ -1,3 +1,5 @@ - "Gebruikers" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index a53bfe48bc3..905d221e886 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,7 @@ - "مجموعات", "Users" => "المستخدمين", "Delete" => "إلغاء" ); +$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;"; diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index fcb01152bf8..17665d22286 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Достъпът е даден", "Grant access" => "Даване на достъп", "External Storage" => "Външно хранилище", @@ -16,3 +17,4 @@ "SSL root certificates" => "SSL основни сертификати", "Import Root Certificate" => "Импортиране на основен сертификат" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index 0f032df9f05..0591dbba55c 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "অধিগমনের অনুমতি প্রদান করা হলো", "Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", "Grant access" => "অধিগমনের অনুমতি প্রদান কর", @@ -18,3 +19,4 @@ "SSL root certificates" => "SSL রুট সনদপত্র", "Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 90ac954301f..c1d6ec077b4 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -1,4 +1,5 @@ - "S'ha concedit l'accés", "Error configuring Dropbox storage" => "Error en configurar l'emmagatzemament Dropbox", "Grant access" => "Concedeix accés", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificats SSL root", "Import Root Certificate" => "Importa certificat root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index c64ecbb5e26..a574e0506cf 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Přístup povolen", "Error configuring Dropbox storage" => "Chyba při nastavení úložiště Dropbox", "Grant access" => "Povolit přístup", @@ -24,3 +25,4 @@ "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index 78bbb987eb8..33992789cb3 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -1,5 +1,7 @@ - "Grwpiau", "Users" => "Defnyddwyr", "Delete" => "Dileu" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index f2c1e45778d..3a25142b36d 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -1,4 +1,5 @@ - "Adgang godkendt", "Error configuring Dropbox storage" => "Fejl ved konfiguration af Dropbox plads", "Grant access" => "Godkend adgang", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-rodcertifikater", "Import Root Certificate" => "Importer rodcertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 8dfa0eafbb4..b2c72f76889 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -1,4 +1,5 @@ - "Zugriff gestattet", "Error configuring Dropbox storage" => "Fehler beim Einrichten von Dropbox", "Grant access" => "Zugriff gestatten", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 9b7ab4d53ca..8f6a25cb522 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Zugriff gestattet", "Error configuring Dropbox storage" => "Fehler beim Einrichten von Dropbox", "Grant access" => "Zugriff gestatten", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 62703b08fbc..0161c0901d6 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,4 +1,5 @@ - "Προσβαση παρασχέθηκε", "Error configuring Dropbox storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox ", "Grant access" => "Παροχή πρόσβασης", @@ -24,3 +25,4 @@ "SSL root certificates" => "Πιστοποιητικά SSL root", "Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index b0afb77498f..5697221cac0 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -1,4 +1,5 @@ - "Alirpermeso donita", "Error configuring Dropbox storage" => "Eraro dum agordado de la memorservo Dropbox", "Grant access" => "Doni alirpermeson", @@ -19,3 +20,4 @@ "SSL root certificates" => "Radikaj SSL-atestoj", "Import Root Certificate" => "Enporti radikan ateston" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index d145a176f71..5179d9329a5 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,4 +1,5 @@ - "Acceso concedido", "Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", "Grant access" => "Conceder acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index c1b3ac63886..a0bb3a8dfea 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Acceso permitido", "Error configuring Dropbox storage" => "Error al configurar el almacenamiento de Dropbox", "Grant access" => "Permitir acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "certificados SSL raíz", "Import Root Certificate" => "Importar certificado raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 465201df4dd..a7e623eb7da 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Ligipääs on antud", "Error configuring Dropbox storage" => "Viga Dropboxi salvestusruumi seadistamisel", "Grant access" => "Anna ligipääs", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root sertifikaadid", "Import Root Certificate" => "Impordi root sertifikaadid" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index 9dc1f3e9c03..db92e2f001c 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -1,4 +1,5 @@ - "Sarrera baimendua", "Error configuring Dropbox storage" => "Errore bat egon da Dropbox biltegiratzea konfiguratzean", "Grant access" => "Baimendu sarrera", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL erro ziurtagiriak", "Import Root Certificate" => "Inportatu Erro Ziurtagiria" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 036a34c0992..216893811cb 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -1,4 +1,5 @@ - "مجوز دسترسی صادر شد", "Error configuring Dropbox storage" => "خطا به هنگام تنظیم فضای دراپ باکس", "Grant access" => " مجوز اعطا دسترسی", @@ -24,3 +25,4 @@ "SSL root certificates" => "گواهی های اصلی SSL ", "Import Root Certificate" => "وارد کردن گواهی اصلی" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index ba39d140fbc..9632aa255ea 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Pääsy sallittu", "Error configuring Dropbox storage" => "Virhe Dropbox levyn asetuksia tehtäessä", "Grant access" => "Salli pääsy", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 5006133a7b6..f6b1a75200c 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -1,4 +1,5 @@ - "Accès autorisé", "Error configuring Dropbox storage" => "Erreur lors de la configuration du support de stockage Dropbox", "Grant access" => "Autoriser l'accès", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificats racine SSL", "Import Root Certificate" => "Importer un certificat racine" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 77f23c39bc3..3dda999dd18 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -1,4 +1,5 @@ - "Concedeuse acceso", "Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox", "Grant access" => "Permitir o acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL root", "Import Root Certificate" => "Importar o certificado root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php index 9cba045d1ea..e99c9f5193d 100644 --- a/apps/files_external/l10n/he.php +++ b/apps/files_external/l10n/he.php @@ -1,4 +1,5 @@ - "הוענקה גישה", "Error configuring Dropbox storage" => "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox", "Grant access" => "הענקת גישה", @@ -19,3 +20,4 @@ "SSL root certificates" => "שורש אישורי אבטחת SSL ", "Import Root Certificate" => "ייבוא אישור אבטחת שורש" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hi.php b/apps/files_external/l10n/hi.php index 0482efc4b23..7df96572596 100644 --- a/apps/files_external/l10n/hi.php +++ b/apps/files_external/l10n/hi.php @@ -1,3 +1,5 @@ - "उपयोगकर्ता" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hr.php b/apps/files_external/l10n/hr.php index 24f27ddf81b..91536e0b873 100644 --- a/apps/files_external/l10n/hr.php +++ b/apps/files_external/l10n/hr.php @@ -1,5 +1,7 @@ - "Grupe", "Users" => "Korisnici", "Delete" => "Obriši" ); +$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;"; diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index b88737a19ab..23fe916eba6 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Érvényes hozzáférés", "Error configuring Dropbox storage" => "A Dropbox tárolót nem sikerült beállítani", "Grant access" => "Megadom a hozzáférést", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL tanúsítványok", "Import Root Certificate" => "SSL tanúsítványok importálása" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hy.php b/apps/files_external/l10n/hy.php index 3b80487278a..f933bec8feb 100644 --- a/apps/files_external/l10n/hy.php +++ b/apps/files_external/l10n/hy.php @@ -1,3 +1,5 @@ - "Ջնջել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index f57f96688bf..47b0f89b8b5 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -1,5 +1,7 @@ - "Gruppos", "Users" => "Usatores", "Delete" => "Deler" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 30cd28bba1c..53ab79ae7ee 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -1,4 +1,5 @@ - "Akses diberikan", "Error configuring Dropbox storage" => "Kesalahan dalam mengonfigurasi penyimpanan Dropbox", "Grant access" => "Berikan hak akses", @@ -23,3 +24,4 @@ "SSL root certificates" => "Sertifikat root SSL", "Import Root Certificate" => "Impor Sertifikat Root" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index 6af53096fac..d2229d1fcdd 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -1,4 +1,5 @@ - "Aðgengi veitt", "Error configuring Dropbox storage" => "Villa við að setja upp Dropbox gagnasvæði", "Grant access" => "Veita aðgengi", @@ -21,3 +22,4 @@ "SSL root certificates" => "SSL rótar skilríki", "Import Root Certificate" => "Flytja inn rótar skilríki" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 4c70a04022e..b53663beb56 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -1,4 +1,5 @@ - "Accesso consentito", "Error configuring Dropbox storage" => "Errore durante la configurazione dell'archivio Dropbox", "Grant access" => "Concedi l'accesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificati SSL radice", "Import Root Certificate" => "Importa certificato radice" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ja_JP.php b/apps/files_external/l10n/ja_JP.php index 97dd4e119d4..fc528f035c2 100644 --- a/apps/files_external/l10n/ja_JP.php +++ b/apps/files_external/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "アクセスは許可されました", "Error configuring Dropbox storage" => "Dropboxストレージの設定エラー", "Grant access" => "アクセスを許可", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSLルート証明書", "Import Root Certificate" => "ルート証明書をインポート" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ka.php b/apps/files_external/l10n/ka.php index 14c0625e1f2..f6356d2cef8 100644 --- a/apps/files_external/l10n/ka.php +++ b/apps/files_external/l10n/ka.php @@ -1,3 +1,5 @@ - "მომხმარებლები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index b0845555b4b..445d40e7089 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "დაშვება მინიჭებულია", "Error configuring Dropbox storage" => "შეცდომა Dropbox საცავის კონფიგურირების დროს", "Grant access" => "დაშვების მინიჭება", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root სერთიფიკატები", "Import Root Certificate" => "Root სერთიფიკატის იმპორტირება" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 803b489c218..64d815a5bcb 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -1,4 +1,5 @@ - "접근 허가됨", "Error configuring Dropbox storage" => "Dropbox 저장소 설정 오류", "Grant access" => "접근 권한 부여", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 루트 인증서", "Import Root Certificate" => "루트 인증서 가져오기" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ku_IQ.php b/apps/files_external/l10n/ku_IQ.php index 59eabb36c9f..39778bce072 100644 --- a/apps/files_external/l10n/ku_IQ.php +++ b/apps/files_external/l10n/ku_IQ.php @@ -1,4 +1,6 @@ - "ناوی بوخچه", "Users" => "به‌كارهێنه‌ر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lb.php b/apps/files_external/l10n/lb.php index 4e78227ec48..13233bf3626 100644 --- a/apps/files_external/l10n/lb.php +++ b/apps/files_external/l10n/lb.php @@ -1,6 +1,8 @@ - "Dossiers Numm:", "Groups" => "Gruppen", "Users" => "Benotzer", "Delete" => "Läschen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index 29c962d9a80..57cdfe6722a 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Priėjimas suteiktas", "Error configuring Dropbox storage" => "Klaida nustatinėjant Dropbox talpyklą", "Grant access" => "Suteikti priėjimą", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL sertifikatas", "Import Root Certificate" => "Įkelti pagrindinį sertifikatą" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index b37dbcbdc16..bc9e3aeefe7 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -1,4 +1,5 @@ - "Piešķirta pieeja", "Error configuring Dropbox storage" => "Kļūda, konfigurējot Dropbox krātuvi", "Grant access" => "Piešķirt pieeju", @@ -23,3 +24,4 @@ "SSL root certificates" => "SSL saknes sertifikāti", "Import Root Certificate" => "Importēt saknes sertifikātus" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index 1f1a1c27831..e410b398ac9 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -1,4 +1,5 @@ - "Пристапот е дозволен", "Error configuring Dropbox storage" => "Грешка при конфигурација на Dropbox", "Grant access" => "Дозволи пристап", @@ -21,3 +22,4 @@ "SSL root certificates" => "SSL root сертификати", "Import Root Certificate" => "Увези" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_external/l10n/ms_MY.php b/apps/files_external/l10n/ms_MY.php index 2fdb089ebc6..4e33263a863 100644 --- a/apps/files_external/l10n/ms_MY.php +++ b/apps/files_external/l10n/ms_MY.php @@ -1,5 +1,7 @@ - "Kumpulan", "Users" => "Pengguna", "Delete" => "Padam" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/my_MM.php b/apps/files_external/l10n/my_MM.php index 5acfbb0321e..1cbe5f0fe52 100644 --- a/apps/files_external/l10n/my_MM.php +++ b/apps/files_external/l10n/my_MM.php @@ -1,3 +1,5 @@ - "သုံးစွဲသူ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index ea8648303d1..cb31ac89227 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Tilgang innvilget", "Error configuring Dropbox storage" => "Feil ved konfigurering av Dropbox-lagring", "Grant access" => "Gi tilgang", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root-sertifikater", "Import Root Certificate" => "Importer root-sertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index ded5a861a8b..35e63b09a35 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -1,4 +1,5 @@ - "Toegang toegestaan", "Error configuring Dropbox storage" => "Fout tijdens het configureren van Dropbox opslag", "Grant access" => "Sta toegang toe", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root certificaten", "Import Root Certificate" => "Importeer root certificaat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/nn_NO.php b/apps/files_external/l10n/nn_NO.php index 998c3f82457..7bb38f14cee 100644 --- a/apps/files_external/l10n/nn_NO.php +++ b/apps/files_external/l10n/nn_NO.php @@ -1,6 +1,8 @@ - "Innstillingar", "Groups" => "Grupper", "Users" => "Brukarar", "Delete" => "Slett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/oc.php b/apps/files_external/l10n/oc.php index 47db011473f..99f2fd507d2 100644 --- a/apps/files_external/l10n/oc.php +++ b/apps/files_external/l10n/oc.php @@ -1,5 +1,7 @@ - "Grops", "Users" => "Usancièrs", "Delete" => "Escafa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index e03ded1e70a..f5501b9755b 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -1,4 +1,5 @@ - "Dostęp do", "Error configuring Dropbox storage" => "Wystąpił błąd podczas konfigurowania zasobu Dropbox", "Grant access" => "Udziel dostępu", @@ -24,3 +25,4 @@ "SSL root certificates" => "Główny certyfikat SSL", "Import Root Certificate" => "Importuj główny certyfikat" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index bc3c356a517..f69bbc1ebe6 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Acesso concedido", "Error configuring Dropbox storage" => "Erro ao configurar armazenamento do Dropbox", "Grant access" => "Permitir acesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL raíz", "Import Root Certificate" => "Importar Certificado Raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 0a05d1f8825..3f2afd33f07 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Acesso autorizado", "Error configuring Dropbox storage" => "Erro ao configurar o armazenamento do Dropbox", "Grant access" => "Conceder acesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL de raiz", "Import Root Certificate" => "Importar Certificado Root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index ed23b4cca8f..7115d09ea94 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -1,4 +1,5 @@ - "Acces permis", "Error configuring Dropbox storage" => "Eroare la configurarea mediului de stocare Dropbox", "Grant access" => "Permite accesul", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificate SSL root", "Import Root Certificate" => "Importă certificat root" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index d2c5292bac4..50c25acba06 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -1,4 +1,5 @@ - "Доступ предоставлен", "Error configuring Dropbox storage" => "Ошибка при настройке хранилища Dropbox", "Grant access" => "Предоставление доступа", @@ -24,3 +25,4 @@ "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); +$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);"; diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php index a43417dfbc1..6dcd0460ada 100644 --- a/apps/files_external/l10n/ru_RU.php +++ b/apps/files_external/l10n/ru_RU.php @@ -1,4 +1,6 @@ - "Группы", "Delete" => "Удалить" ); +$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);"; diff --git a/apps/files_external/l10n/si_LK.php b/apps/files_external/l10n/si_LK.php index cc9cb9b9ce5..cad928accef 100644 --- a/apps/files_external/l10n/si_LK.php +++ b/apps/files_external/l10n/si_LK.php @@ -1,4 +1,5 @@ - "පිවිසීමට හැක", "Error configuring Dropbox storage" => "Dropbox ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත", "Grant access" => "පිවිසුම ලබාදෙන්න", @@ -19,3 +20,4 @@ "SSL root certificates" => "SSL මූල සහතිකයන්", "Import Root Certificate" => "මූල සහතිකය ආයාත කරන්න" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 33edcb9d4c8..ca445387bca 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Prístup povolený", "Error configuring Dropbox storage" => "Chyba pri konfigurácii úložiska Dropbox", "Grant access" => "Povoliť prístup", @@ -24,3 +25,4 @@ "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 09b91b913e9..b0fcbf9eb69 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -1,4 +1,5 @@ - "Dostop je odobren", "Error configuring Dropbox storage" => "Napaka nastavljanja shrambe Dropbox", "Grant access" => "Odobri dostop", @@ -24,3 +25,4 @@ "SSL root certificates" => "Korenska potrdila SSL", "Import Root Certificate" => "Uvozi korensko potrdilo" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_external/l10n/sq.php b/apps/files_external/l10n/sq.php index d5393aa3852..42de15edadc 100644 --- a/apps/files_external/l10n/sq.php +++ b/apps/files_external/l10n/sq.php @@ -1,4 +1,6 @@ - "Përdoruesit", "Delete" => "Elimino" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sr.php b/apps/files_external/l10n/sr.php index 2554c498dda..c456daa004d 100644 --- a/apps/files_external/l10n/sr.php +++ b/apps/files_external/l10n/sr.php @@ -1,5 +1,7 @@ - "Групе", "Users" => "Корисници", "Delete" => "Обриши" ); +$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);"; diff --git a/apps/files_external/l10n/sr@latin.php b/apps/files_external/l10n/sr@latin.php index 24f27ddf81b..a2489bbc64b 100644 --- a/apps/files_external/l10n/sr@latin.php +++ b/apps/files_external/l10n/sr@latin.php @@ -1,5 +1,7 @@ - "Grupe", "Users" => "Korisnici", "Delete" => "Obriši" ); +$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);"; diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 80e68ab6e06..2c0b0ab69e4 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -1,4 +1,5 @@ - "Åtkomst beviljad", "Error configuring Dropbox storage" => "Fel vid konfigurering av Dropbox", "Grant access" => "Bevilja åtkomst", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL rotcertifikat", "Import Root Certificate" => "Importera rotcertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ta_LK.php b/apps/files_external/l10n/ta_LK.php index cee3b6edb8a..bb663a4fcb6 100644 --- a/apps/files_external/l10n/ta_LK.php +++ b/apps/files_external/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "அனுமதி வழங்கப்பட்டது", "Error configuring Dropbox storage" => "Dropbox சேமிப்பை தகவமைப்பதில் வழு", "Grant access" => "அனுமதியை வழங்கல்", @@ -19,3 +20,4 @@ "SSL root certificates" => "SSL வேர் சான்றிதழ்கள்", "Import Root Certificate" => "வேர் சான்றிதழை இறக்குமதி செய்க" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/te.php b/apps/files_external/l10n/te.php index 3d31f6438f5..7f8d893d463 100644 --- a/apps/files_external/l10n/te.php +++ b/apps/files_external/l10n/te.php @@ -1,5 +1,7 @@ - "సంచయం పేరు", "Users" => "వాడుకరులు", "Delete" => "తొలగించు" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index 2f733eab9e8..f2ea35f10f4 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -1,4 +1,5 @@ - "การเข้าถึงได้รับอนุญาตแล้ว", "Error configuring Dropbox storage" => "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox", "Grant access" => "อนุญาตให้เข้าถึงได้", @@ -21,3 +22,4 @@ "SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", "Import Root Certificate" => "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 3c3c0c24f97..cc52c425b8d 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -1,4 +1,5 @@ - "Giriş kabul edildi", "Error configuring Dropbox storage" => "Dropbox depo yapılandırma hatası", "Grant access" => "Erişim sağlandı", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL kök sertifikaları", "Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/ug.php b/apps/files_external/l10n/ug.php index 2d1dea98906..ae20f7424da 100644 --- a/apps/files_external/l10n/ug.php +++ b/apps/files_external/l10n/ug.php @@ -1,4 +1,5 @@ - "قىسقۇچ ئاتى", "External storage" => "سىرتقى ساقلىغۇچ", "Configuration" => "سەپلىمە", @@ -7,3 +8,4 @@ "Users" => "ئىشلەتكۈچىلەر", "Delete" => "ئۆچۈر" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 8783896d289..e535b455d10 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -1,4 +1,5 @@ - "Доступ дозволено", "Error configuring Dropbox storage" => "Помилка при налаштуванні сховища Dropbox", "Grant access" => "Дозволити доступ", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL корневі сертифікати", "Import Root Certificate" => "Імпортувати корневі сертифікати" ); +$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);"; diff --git a/apps/files_external/l10n/ur_PK.php b/apps/files_external/l10n/ur_PK.php index 278357b4d68..56df17991bc 100644 --- a/apps/files_external/l10n/ur_PK.php +++ b/apps/files_external/l10n/ur_PK.php @@ -1,3 +1,5 @@ - "یوزرز" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index 769f9e2a097..da8ac419cda 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -1,4 +1,5 @@ - "Đã cấp quyền truy cập", "Error configuring Dropbox storage" => "Lỗi cấu hình lưu trữ Dropbox ", "Grant access" => "Cấp quyền truy cập", @@ -24,3 +25,4 @@ "SSL root certificates" => "Chứng chỉ SSL root", "Import Root Certificate" => "Nhập Root Certificate" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php index 47298f8007d..3633de6314e 100644 --- a/apps/files_external/l10n/zh_CN.GB2312.php +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "已授予权限", "Error configuring Dropbox storage" => "配置 Dropbox 存储出错", "Grant access" => "授予权限", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 根证书", "Import Root Certificate" => "导入根证书" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 8157923183c..5e2c2e4fe0c 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "权限已授予。", "Error configuring Dropbox storage" => "配置Dropbox存储时出错", "Grant access" => "授权", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL根证书", "Import Root Certificate" => "导入根证书" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php index a85b5a03b8a..76e0ed69d27 100644 --- a/apps/files_external/l10n/zh_HK.php +++ b/apps/files_external/l10n/zh_HK.php @@ -1,5 +1,7 @@ - "群組", "Users" => "用戶", "Delete" => "刪除" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index a8314dcef03..d85d18a1c32 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "允許存取", "Error configuring Dropbox storage" => "設定 Dropbox 儲存時發生錯誤", "Grant access" => "允許存取", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 根憑證", "Import Root Certificate" => "匯入根憑證" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/af_ZA.php b/apps/files_sharing/l10n/af_ZA.php index 04e194530b1..946cc3a5bb8 100644 --- a/apps/files_sharing/l10n/af_ZA.php +++ b/apps/files_sharing/l10n/af_ZA.php @@ -1,3 +1,5 @@ - "Wagwoord" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index 043c7ee1b27..ff7b40d16bc 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,4 +1,5 @@ - "كلمة المرور", "Submit" => "تطبيق", "%s shared the folder %s with you" => "%s شارك المجلد %s معك", @@ -8,3 +9,4 @@ "Cancel upload" => "إلغاء رفع الملفات", "No preview available for" => "لا يوجد عرض مسبق لـ" ); +$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;"; diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 8e719ba2356..1094870fd0f 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Парола", "Submit" => "Потвърждение", "%s shared the folder %s with you" => "%s сподели папката %s с Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Спри качването", "No preview available for" => "Няма наличен преглед за" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index baa0c5c707c..71b948e347b 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "কূটশব্দ", "Submit" => "জমা দিন", "%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", @@ -8,3 +9,4 @@ "Cancel upload" => "আপলোড বাতিল কর", "No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index ccf7fc28ec1..cbe8f86e253 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -1,4 +1,5 @@ - "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", "Submit" => "Envia", @@ -15,3 +16,4 @@ "Cancel upload" => "Cancel·la la pujada", "No preview available for" => "No hi ha vista prèvia disponible per a" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index bc9a645e112..7258dedcf6d 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", "Submit" => "Odeslat", @@ -15,3 +16,4 @@ "Cancel upload" => "Zrušit odesílání", "No preview available for" => "Náhled není dostupný pro" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 6ff3e274c39..66fbc4e1d1c 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Cyfrinair", "Submit" => "Cyflwyno", "%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", @@ -8,3 +9,4 @@ "Cancel upload" => "Diddymu llwytho i fyny", "No preview available for" => "Does dim rhagolwg ar gael ar gyfer" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index f9ee949484d..0ca0f38161a 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -1,4 +1,5 @@ - "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Submit" => "Send", @@ -15,3 +16,4 @@ "Cancel upload" => "Fortryd upload", "No preview available for" => "Forhåndsvisning ikke tilgængelig for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index 9b0184f3104..afed17d8839 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,4 +1,5 @@ - "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Absenden", @@ -15,3 +16,4 @@ "Cancel upload" => "Upload abbrechen", "No preview available for" => "Es ist keine Vorschau verfügbar für" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 8661e3ee94d..1bd24f9d9c4 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", @@ -15,3 +16,4 @@ "Cancel upload" => "Upload abbrechen", "No preview available for" => "Es ist keine Vorschau verfügbar für" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 8f68ae5818f..93486a831b1 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,4 +1,5 @@ - "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", "Submit" => "Καταχώρηση", @@ -15,3 +16,4 @@ "Cancel upload" => "Ακύρωση αποστολής", "No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index cb40c5a1680..a60f1fe72f2 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,4 +1,5 @@ - "Secret Code", "Submit" => "Submit", "%s shared the folder %s with you" => "%s shared the folder %s with you", @@ -6,3 +7,4 @@ "Download" => "Download", "No preview available for" => "No preview available for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index d3ca5370a2c..70e703bda91 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,4 +1,5 @@ - "Pasvorto", "Submit" => "Sendi", "%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", @@ -8,3 +9,4 @@ "Cancel upload" => "Nuligi alŝuton", "No preview available for" => "Ne haveblas antaŭvido por" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 2a006630ab0..1f238d083fb 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,4 +1,5 @@ - "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", @@ -15,3 +16,4 @@ "Cancel upload" => "Cancelar subida", "No preview available for" => "No hay vista previa disponible para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 90bfe704d22..fed0b1e7b30 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -1,4 +1,5 @@ - "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", @@ -9,3 +10,4 @@ "Cancel upload" => "Cancelar subida", "No preview available for" => "La vista preliminar no está disponible para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 78fe436398c..6de17591cbc 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Submit" => "Saada", @@ -9,3 +10,4 @@ "Cancel upload" => "Tühista üleslaadimine", "No preview available for" => "Eelvaadet pole saadaval" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 1d8891792fb..8e13c24a926 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -1,4 +1,5 @@ - "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", "Submit" => "Bidali", @@ -9,3 +10,4 @@ "Cancel upload" => "Ezeztatu igoera", "No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat " ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 7a744c8463d..48888f798a0 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -1,4 +1,5 @@ - "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", "Submit" => "ثبت", @@ -9,3 +10,4 @@ "Cancel upload" => "متوقف کردن بار گذاری", "No preview available for" => "هیچگونه پیش نمایشی موجود نیست" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 59c951b7248..42905be57a6 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", @@ -15,3 +16,4 @@ "Cancel upload" => "Peru lähetys", "No preview available for" => "Ei esikatselua kohteelle" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 32aa6e0065a..b263cd87959 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,4 +1,5 @@ - "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", "Submit" => "Envoyer", @@ -9,3 +10,4 @@ "Cancel upload" => "Annuler l'envoi", "No preview available for" => "Pas d'aperçu disponible pour" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index c90f5b0760e..66b1f0e5ffc 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -1,4 +1,5 @@ - "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", @@ -15,3 +16,4 @@ "Cancel upload" => "Cancelar o envío", "No preview available for" => "Sen vista previa dispoñíbel para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index 41fc314f3c2..f8b304898ce 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,4 +1,5 @@ - "סיסמא", "Submit" => "שליחה", "%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", @@ -8,3 +9,4 @@ "Cancel upload" => "ביטול ההעלאה", "No preview available for" => "אין תצוגה מקדימה זמינה עבור" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hi.php b/apps/files_sharing/l10n/hi.php index 560df54fc94..74a2c320438 100644 --- a/apps/files_sharing/l10n/hi.php +++ b/apps/files_sharing/l10n/hi.php @@ -1,3 +1,5 @@ - "पासवर्ड" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index d5763a8ddb8..87eb9567067 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,7 +1,9 @@ - "Lozinka", "Submit" => "Pošalji", "Download" => "Preuzimanje", "Upload" => "Učitaj", "Cancel upload" => "Prekini upload" ); +$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;"; diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 15ff6ff3c2b..7ef69b1e0b6 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -1,7 +1,14 @@ - "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", "Submit" => "Elküld", +"Sorry, this link doesn’t seem to work anymore." => "Sajnos úgy tűnik, ez a link már nem működik.", +"Reasons might be:" => "Ennek az oka a következő lehet:", +"the item was removed" => "az állományt időközben eltávolították", +"the link expired" => "lejárt a link érvényességi ideje", +"sharing is disabled" => "letiltásra került a megosztás", +"For more info, please ask the person who sent this link." => "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!", "%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s", "%s shared the file %s with you" => "%s megosztotta Önnel ezt az állományt: %s", "Download" => "Letöltés", @@ -9,3 +16,4 @@ "Cancel upload" => "A feltöltés megszakítása", "No preview available for" => "Nem áll rendelkezésre előnézet ehhez: " ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hy.php b/apps/files_sharing/l10n/hy.php index 438e8a7433c..d4cb416f45a 100644 --- a/apps/files_sharing/l10n/hy.php +++ b/apps/files_sharing/l10n/hy.php @@ -1,4 +1,6 @@ - "Հաստատել", "Download" => "Բեռնել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index 01acba5108a..5112501073d 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,6 +1,8 @@ - "Contrasigno", "Submit" => "Submitter", "Download" => "Discargar", "Upload" => "Incargar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index cc6e591834c..a4d73bd2b75 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,4 +1,5 @@ - "Sandi", "Submit" => "Kirim", "%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", @@ -8,3 +9,4 @@ "Cancel upload" => "Batal pengunggahan", "No preview available for" => "Tidak ada pratinjau tersedia untuk" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 222459f7a00..05241d3f9e6 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,4 +1,5 @@ - "Lykilorð", "Submit" => "Senda", "%s shared the folder %s with you" => "%s deildi möppunni %s með þér", @@ -8,3 +9,4 @@ "Cancel upload" => "Hætta við innsendingu", "No preview available for" => "Yfirlit ekki í boði fyrir" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index 5bd18795715..a611e0641c8 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,4 +1,5 @@ - "La password è errata. Prova ancora.", "Password" => "Password", "Submit" => "Invia", @@ -15,3 +16,4 @@ "Cancel upload" => "Annulla il caricamento", "No preview available for" => "Nessuna anteprima disponibile per" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index d2bc2d11245..4f7d5b31c2f 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,7 +1,14 @@ - "パスワードが間違っています。再試行してください。", "Password" => "パスワード", "Submit" => "送信", +"Sorry, this link doesn’t seem to work anymore." => "申し訳ございません。このリンクはもう利用できません。", +"Reasons might be:" => "理由は以下の通りと考えられます:", +"the item was removed" => "アイテムが削除されました", +"the link expired" => "リンクの期限が切れています", +"sharing is disabled" => "共有が無効になっています", +"For more info, please ask the person who sent this link." => "不明な点は、こちらのリンクの提供者に確認をお願いします。", "%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有中です", "%s shared the file %s with you" => "%s はファイル %s をあなたと共有中です", "Download" => "ダウンロード", @@ -9,3 +16,4 @@ "Cancel upload" => "アップロードをキャンセル", "No preview available for" => "プレビューはありません" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ka.php b/apps/files_sharing/l10n/ka.php index 0270d5d6f8c..a9b046e03b6 100644 --- a/apps/files_sharing/l10n/ka.php +++ b/apps/files_sharing/l10n/ka.php @@ -1,4 +1,6 @@ - "პაროლი", "Download" => "გადმოწერა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index c88cc59cf8d..a5a80b3c5a1 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "პაროლი", "Submit" => "გაგზავნა", "%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", @@ -8,3 +9,4 @@ "Cancel upload" => "ატვირთვის გაუქმება", "No preview available for" => "წინასწარი დათვალიერება შეუძლებელია" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index d2cf52447f1..f3a94a70979 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -1,4 +1,5 @@ - "암호", "Submit" => "제출", "%s shared the folder %s with you" => "%s 님이 폴더 %s을(를) 공유하였습니다", @@ -8,3 +9,4 @@ "Cancel upload" => "업로드 취소", "No preview available for" => "다음 항목을 미리 볼 수 없음:" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 576671aaa75..55576a19c36 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "وشەی تێپەربو", "Submit" => "ناردن", "%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", @@ -7,3 +8,4 @@ "Upload" => "بارکردن", "No preview available for" => "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index a604affee64..d37a1d9d22a 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -1,4 +1,5 @@ - "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", "Submit" => "Fortschécken", @@ -9,3 +10,4 @@ "Cancel upload" => "Upload ofbriechen", "No preview available for" => "Keeng Preview do fir" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 0f9347377c9..5d0e58e2fb2 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Slaptažodis", "Submit" => "Išsaugoti", "%s shared the folder %s with you" => "%s pasidalino su jumis %s aplanku", @@ -8,3 +9,4 @@ "Cancel upload" => "Atšaukti siuntimą", "No preview available for" => "Peržiūra nėra galima" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index be021b8e7a0..0eb04fb966f 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,4 +1,5 @@ - "Parole", "Submit" => "Iesniegt", "%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", @@ -8,3 +9,4 @@ "Cancel upload" => "Atcelt augšupielādi", "No preview available for" => "Nav pieejams priekšskatījums priekš" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index ed04035ea5d..c913b2beaf7 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,4 +1,5 @@ - "Лозинка", "Submit" => "Прати", "%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Откажи прикачување", "No preview available for" => "Нема достапно преглед за" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 0a6a05b7781..0a3d08bbc17 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,7 +1,9 @@ - "Kata laluan", "Submit" => "Hantar", "Download" => "Muat turun", "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index 4b37ab8b48a..f44010004cd 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,5 +1,7 @@ - "စကားဝှက်", "Submit" => "ထည့်သွင်းမည်", "Download" => "ဒေါင်းလုတ်" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 65eadd3ccae..dd8a8edf313 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Passordet er feil. Prøv på nytt.", "Password" => "Passord", "Submit" => "Send inn", @@ -9,3 +10,4 @@ "Cancel upload" => "Avbryt opplasting", "No preview available for" => "Forhåndsvisning ikke tilgjengelig for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 90f2f2290ff..c8f3e8e89e9 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,4 +1,5 @@ - "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", "Submit" => "Verzenden", @@ -9,3 +10,4 @@ "Cancel upload" => "Upload afbreken", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index afa3eabe8cf..bcb6538b09f 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Passord", "Submit" => "Send", "%s shared the folder %s with you" => "%s delte mappa %s med deg", @@ -8,3 +9,4 @@ "Cancel upload" => "Avbryt opplasting", "No preview available for" => "Inga førehandsvising tilgjengeleg for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 4ec48b151a8..493ddb4dfd3 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,7 +1,9 @@ - "Senhal", "Submit" => "Sosmetre", "Download" => "Avalcarga", "Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 3f72403116a..43c7e2e3144 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,4 +1,5 @@ - "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", "Submit" => "Wyślij", @@ -15,3 +16,4 @@ "Cancel upload" => "Anuluj wysyłanie", "No preview available for" => "Podgląd nie jest dostępny dla" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index ffd068f4fc5..9fc1cacf7cb 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", @@ -15,3 +16,4 @@ "Cancel upload" => "Cancelar upload", "No preview available for" => "Nenhuma visualização disponível para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 8b02e736062..73dc2a3e1f3 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,7 +1,14 @@ - "Password errada, por favor tente de novo", "Password" => "Password", "Submit" => "Submeter", +"Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", +"Reasons might be:" => "As razões poderão ser:", +"the item was removed" => "O item foi removido", +"the link expired" => "O link expirou", +"sharing is disabled" => "A partilha está desativada", +"For more info, please ask the person who sent this link." => "Para mais informações, por favor questione a pessoa que lhe enviou este link", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", "%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", "Download" => "Transferir", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancelar envio", "No preview available for" => "Não há pré-visualização para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index 3197068cdd1..d17152ff1b1 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -1,4 +1,5 @@ - "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", "Submit" => "Trimite", @@ -9,3 +10,4 @@ "Cancel upload" => "Anulează încărcarea", "No preview available for" => "Nici o previzualizare disponibilă pentru " ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 601518e705d..f42f1d9aeb6 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -1,4 +1,5 @@ - "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", "Submit" => "Отправить", @@ -15,3 +16,4 @@ "Cancel upload" => "Отмена загрузки", "No preview available for" => "Предпросмотр недоступен для" ); +$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);"; diff --git a/apps/files_sharing/l10n/ru_RU.php b/apps/files_sharing/l10n/ru_RU.php index 2cadd163462..52a41b1f513 100644 --- a/apps/files_sharing/l10n/ru_RU.php +++ b/apps/files_sharing/l10n/ru_RU.php @@ -1,3 +1,5 @@ - "Загрузка" ); +$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);"; diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index 27b9d649a0a..6135f092139 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,4 +1,5 @@ - "මුර පදය", "Submit" => "යොමු කරන්න", "%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", @@ -8,3 +9,4 @@ "Cancel upload" => "උඩුගත කිරීම අත් හරින්න", "No preview available for" => "පූර්වදර්ශනයක් නොමැත" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 77173b44345..31ecb28b602 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -1,6 +1,14 @@ - "Heslo je chybné. Skúste to znova.", "Password" => "Heslo", "Submit" => "Odoslať", +"Sorry, this link doesn’t seem to work anymore." => "To je nepríjemné, ale tento odkaz už nie je funkčný.", +"Reasons might be:" => "Možné dôvody:", +"the item was removed" => "položka bola presunutá", +"the link expired" => "linke vypršala platnosť", +"sharing is disabled" => "zdieľanie je zakázané", +"For more info, please ask the person who sent this link." => "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", "%s shared the folder %s with you" => "%s zdieľa s vami priečinok %s", "%s shared the file %s with you" => "%s zdieľa s vami súbor %s", "Download" => "Sťahovanie", @@ -8,3 +16,4 @@ "Cancel upload" => "Zrušiť odosielanie", "No preview available for" => "Žiaden náhľad k dispozícii pre" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 39d2fca81cb..cbd4f5fea22 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,4 +1,5 @@ - "Geslo", "Submit" => "Pošlji", "%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", @@ -8,3 +9,4 @@ "Cancel upload" => "Prekliči pošiljanje", "No preview available for" => "Predogled ni na voljo za" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index 1c0e0aa2bd1..ae29e5738ff 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -1,4 +1,5 @@ - "Kodi", "Submit" => "Parashtro", "%s shared the folder %s with you" => "%s ndau me ju dosjen %s", @@ -8,3 +9,4 @@ "Cancel upload" => "Anulo ngarkimin", "No preview available for" => "Shikimi paraprak nuk është i mundur për" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index f893ec0ab42..3b97d15419a 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,7 +1,9 @@ - "Лозинка", "Submit" => "Пошаљи", "Download" => "Преузми", "Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање" ); +$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);"; diff --git a/apps/files_sharing/l10n/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index c45f711e15f..1a6be625761 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,6 +1,8 @@ - "Lozinka", "Submit" => "Pošalji", "Download" => "Preuzmi", "Upload" => "Pošalji" ); +$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);"; diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 434a81ac28a..b8a5f8629a6 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,4 +1,5 @@ - "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", @@ -15,3 +16,4 @@ "Cancel upload" => "Avbryt uppladdning", "No preview available for" => "Ingen förhandsgranskning tillgänglig för" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index 6e69855be11..b4eb0fb7fb8 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "கடவுச்சொல்", "Submit" => "சமர்ப்பிக்குக", "%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", @@ -8,3 +9,4 @@ "Cancel upload" => "பதிவேற்றலை இரத்து செய்க", "No preview available for" => "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/te.php b/apps/files_sharing/l10n/te.php index 1e2eedc6844..94ca7650e5f 100644 --- a/apps/files_sharing/l10n/te.php +++ b/apps/files_sharing/l10n/te.php @@ -1,3 +1,5 @@ - "సంకేతపదం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 608c86d586a..060bd8bed94 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,4 +1,5 @@ - "รหัสผ่าน", "Submit" => "ส่ง", "%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", @@ -8,3 +9,4 @@ "Cancel upload" => "ยกเลิกการอัพโหลด", "No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index 4da9c17c7e8..a5bcff82cf3 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,4 +1,5 @@ - "Parola", "Submit" => "Gönder", "%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", @@ -8,3 +9,4 @@ "Cancel upload" => "Yüklemeyi iptal et", "No preview available for" => "Kullanılabilir önizleme yok" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 9f9c7beb410..43ee9f77bcd 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,7 +1,9 @@ - "ئىم", "Submit" => "تاپشۇر", "Download" => "چۈشۈر", "Upload" => "يۈكلە", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index 8ef7f1bd8ad..b6a7784c690 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -1,4 +1,5 @@ - "Пароль", "Submit" => "Передати", "%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Перервати завантаження", "No preview available for" => "Попередній перегляд недоступний для" ); +$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);"; diff --git a/apps/files_sharing/l10n/ur_PK.php b/apps/files_sharing/l10n/ur_PK.php index 745f2f930d1..4f6767c26a1 100644 --- a/apps/files_sharing/l10n/ur_PK.php +++ b/apps/files_sharing/l10n/ur_PK.php @@ -1,3 +1,5 @@ - "پاسورڈ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index d75fb1dc53f..00e8e094c36 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,4 +1,5 @@ - "Mật khẩu", "Submit" => "Xác nhận", "%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", @@ -8,3 +9,4 @@ "Cancel upload" => "Hủy upload", "No preview available for" => "Không có xem trước cho" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php index 2dd79ec38d4..206e1921faf 100644 --- a/apps/files_sharing/l10n/zh_CN.GB2312.php +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "密码", "Submit" => "提交", "%s shared the folder %s with you" => "%s 与您分享了文件夹 %s", @@ -8,3 +9,4 @@ "Cancel upload" => "取消上传", "No preview available for" => "没有预览可用于" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index c7fa08b81f0..37898a1cd00 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "密码", "Submit" => "提交", "%s shared the folder %s with you" => "%s与您共享了%s文件夹", @@ -8,3 +9,4 @@ "Cancel upload" => "取消上传", "No preview available for" => "没有预览" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_HK.php b/apps/files_sharing/l10n/zh_HK.php index 8f9b7900c2c..434420264ea 100644 --- a/apps/files_sharing/l10n/zh_HK.php +++ b/apps/files_sharing/l10n/zh_HK.php @@ -1,5 +1,7 @@ - "密碼", "Download" => "下載", "Upload" => "上傳" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index b172879469f..b950cbf8c9e 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "密碼", "Submit" => "送出", "%s shared the folder %s with you" => "%s 和您分享了資料夾 %s ", @@ -8,3 +9,4 @@ "Cancel upload" => "取消上傳", "No preview available for" => "無法預覽" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index f36133db547..ccb80f959ec 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -1,4 +1,5 @@ - "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", "perform restore operation" => "إبدء عملية الإستعادة", @@ -16,3 +17,4 @@ "Delete" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); +$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;"; diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 1e0953b013a..5ae41a324af 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", "perform restore operation" => "извършване на действие по възстановяване", @@ -16,3 +17,4 @@ "Delete" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index 75b071bfa74..a33a6de89af 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "সমস্যা", "Name" => "রাম", "1 folder" => "১টি ফোল্ডার", @@ -7,3 +8,4 @@ "{count} files" => "{count} টি ফাইল", "Delete" => "মুছে" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 2f15068cb50..2e4fa4dbe08 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", "perform restore operation" => "executa l'operació de restauració", @@ -17,3 +18,4 @@ "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 6429c90cf5f..eef9accb83e 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", "perform restore operation" => "provést obnovu", @@ -17,3 +18,4 @@ "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 055e8d8654d..af0c5239b56 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", "perform restore operation" => "gweithrediad adfer", @@ -16,3 +17,4 @@ "Delete" => "Dileu", "Deleted Files" => "Ffeiliau Ddilewyd" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index ff114a10e7e..4e0bbc23a8e 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", "perform restore operation" => "udfør gendannelsesoperation", @@ -17,3 +18,4 @@ "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 3c643874723..856317f3c6f 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -1,4 +1,5 @@ - "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", @@ -17,3 +18,4 @@ "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 47dcedd4bf3..bd1e3fb9e2b 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", @@ -17,3 +18,4 @@ "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index ad48038ff62..19331cd1f6f 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -1,4 +1,5 @@ - "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", "perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", @@ -17,3 +18,4 @@ "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 161e9c3e88a..373a503fc66 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,4 +1,5 @@ - "Eraro", "Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", @@ -10,3 +11,4 @@ "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index d6591713e3b..58e5c6c9035 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,4 +1,5 @@ - "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", "perform restore operation" => "restaurar", @@ -17,3 +18,4 @@ "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index de7494ca69e..98f140983ca 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -1,4 +1,5 @@ - "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", "perform restore operation" => "Restaurar", @@ -16,3 +17,4 @@ "Delete" => "Borrar", "Deleted Files" => "Archivos eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 3d3b46a1808..36060b16282 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -1,4 +1,5 @@ - "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", "perform restore operation" => "soorita taastamine", @@ -16,3 +17,4 @@ "Delete" => "Kustuta", "Deleted Files" => "Kustutatud failid" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 45b77b7990c..2649124836f 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", "perform restore operation" => "berreskuratu", @@ -16,3 +17,4 @@ "Delete" => "Ezabatu", "Deleted Files" => "Ezabatutako Fitxategiak" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 6ecc6feacbf..33a8d418ccf 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -1,4 +1,5 @@ - "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", "perform restore operation" => "انجام عمل بازگرداندن", @@ -16,3 +17,4 @@ "Delete" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index 646a000c0d1..fec0567fbec 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", "perform restore operation" => "suorita palautustoiminto", @@ -17,3 +18,4 @@ "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 8198e3e32a8..17c524d712d 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", "perform restore operation" => "effectuer l'opération de restauration", @@ -16,3 +17,4 @@ "Delete" => "Supprimer", "Deleted Files" => "Fichiers effacés" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index d22277c28f5..9b222e6e15f 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", "perform restore operation" => "realizar a operación de restauración", @@ -17,3 +18,4 @@ "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 853d4e1925a..1a0e3f4772c 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", "perform restore operation" => "ביצוע פעולת שחזור", @@ -16,3 +17,4 @@ "Delete" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index a65d876e1f0..8e8fd22f8ef 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -1,5 +1,7 @@ - "Greška", "Name" => "Ime", "Delete" => "Obriši" ); +$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;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 5e64bc04e03..7ed9eb7eba7 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", "perform restore operation" => "a visszaállítás végrehajtása", @@ -11,8 +12,10 @@ "{count} folders" => "{count} mappa", "1 file" => "1 fájl", "{count} files" => "{count} fájl", +"restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", "Restore" => "Visszaállítás", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 3b80487278a..f933bec8feb 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,3 +1,5 @@ - "Ջնջել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index dea25b30ba4..7709ef030e3 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -1,5 +1,7 @@ - "Error", "Name" => "Nomine", "Delete" => "Deler" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 62a63d515a3..4fbe154963a 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", "perform restore operation" => "jalankan operasi pemulihan", @@ -16,3 +17,4 @@ "Delete" => "Hapus", "Deleted Files" => "Berkas yang Dihapus" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 12267c6695a..1cf794db976 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -1,4 +1,5 @@ - "Villa", "Name" => "Nafn", "1 folder" => "1 mappa", @@ -7,3 +8,4 @@ "{count} files" => "{count} skrár", "Delete" => "Eyða" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 769971bb9c8..0843cd5c2ec 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", "perform restore operation" => "esegui operazione di ripristino", @@ -17,3 +18,4 @@ "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index db5783bf432..40fc0ded83b 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", "perform restore operation" => "復元操作を実行する", @@ -11,8 +12,10 @@ "{count} folders" => "{count} フォルダ", "1 file" => "1 ファイル", "{count} files" => "{count} ファイル", +"restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", "Restore" => "復元", "Delete" => "削除", "Deleted Files" => "削除されたファイル" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 667eb500eb9..63906136425 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", "perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", @@ -16,3 +17,4 @@ "Delete" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 42ad87e98d2..68845b5472e 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,4 +1,5 @@ - "오류", "Delete permanently" => "영원히 삭제", "Name" => "이름", @@ -9,3 +10,4 @@ "Restore" => "복원", "Delete" => "삭제" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 67fdd7d08fa..c1962a4075d 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,4 +1,6 @@ - "هه‌ڵه", "Name" => "ناو" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index 2065ee03d32..b434ae72176 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -1,5 +1,7 @@ - "Fehler", "Name" => "Numm", "Delete" => "Läschen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 7df63bd7f28..4fd43bd17b2 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", "perform restore operation" => "atkurti", @@ -16,3 +17,4 @@ "Delete" => "Ištrinti", "Deleted Files" => "Ištrinti failai" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index b1b8c3e6b03..5753162e29d 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", "perform restore operation" => "veikt atjaunošanu", @@ -16,3 +17,4 @@ "Delete" => "Dzēst", "Deleted Files" => "Dzēstās datnes" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 175399249e5..078140039b4 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -1,4 +1,5 @@ - "Грешка", "Name" => "Име", "1 folder" => "1 папка", @@ -7,3 +8,4 @@ "{count} files" => "{count} датотеки", "Delete" => "Избриши" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 52a997aab15..1972eba0318 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -1,5 +1,7 @@ - "Ralat", "Name" => "Nama", "Delete" => "Padam" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index 43ad0180494..e650904a412 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", "perform restore operation" => "utfør gjenopprettings operasjon", @@ -16,3 +17,4 @@ "Delete" => "Slett", "Deleted Files" => "Slettet filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index a0a55eced85..21b6d393781 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -1,4 +1,5 @@ - "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", "perform restore operation" => "uitvoeren restore operatie", @@ -17,3 +18,4 @@ "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 454ea2b0575..3e1f9b819a8 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", "perform restore operation" => "utfør gjenoppretting", @@ -16,3 +17,4 @@ "Delete" => "Slett", "Deleted Files" => "Sletta filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index fa9e097f6ca..b472683f08d 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -1,5 +1,7 @@ - "Error", "Name" => "Nom", "Delete" => "Escafa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index 2b9ace19c41..d31a671eb58 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", "perform restore operation" => "wykonywanie operacji przywracania", @@ -17,3 +18,4 @@ "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index c1a88541b27..26eea51b819 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", "perform restore operation" => "realizar operação de restauração", @@ -17,3 +18,4 @@ "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 044d324c5ab..15213892d2a 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", "perform restore operation" => "executar a operação de restauro", @@ -17,3 +18,4 @@ "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 3af21b7e3f3..3c38f16b392 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,4 +1,5 @@ - "Eroare", "Delete permanently" => "Stergere permanenta", "Name" => "Nume", @@ -8,3 +9,4 @@ "{count} files" => "{count} fisiere", "Delete" => "Șterge" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index f77d82c7100..d883115281e 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -1,4 +1,5 @@ - "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", "perform restore operation" => "выполнить операцию восстановления", @@ -17,3 +18,4 @@ "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); +$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);"; diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php index 8636e417ecb..3fda38c66bf 100644 --- a/apps/files_trashbin/l10n/ru_RU.php +++ b/apps/files_trashbin/l10n/ru_RU.php @@ -1,5 +1,7 @@ - "Ошибка", "Name" => "Имя", "Delete" => "Удалить" ); +$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);"; diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 48ea423a4c4..9de1c00989e 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -1,7 +1,9 @@ - "දෝෂයක්", "Name" => "නම", "1 folder" => "1 ෆොල්ඩරයක්", "1 file" => "1 ගොනුවක්", "Delete" => "මකා දමන්න" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 7cef36ef1c0..552a69f4fcb 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", "perform restore operation" => "vykonať obnovu", @@ -11,8 +12,10 @@ "{count} folders" => "{count} priečinkov", "1 file" => "1 súbor", "{count} files" => "{count} súborov", +"restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", "Restore" => "Obnoviť", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index 8c8446d4e5b..4140bb8d59a 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -1,4 +1,5 @@ - "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", "perform restore operation" => "izvedi opravilo obnavljanja", @@ -16,3 +17,4 @@ "Delete" => "Izbriši", "Deleted Files" => "Izbrisane datoteke" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index ce3ed947ccd..a0dae065b70 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -1,4 +1,5 @@ - "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", "perform restore operation" => "ekzekuto operacionin e rivendosjes", @@ -16,3 +17,4 @@ "Delete" => "Elimino", "Deleted Files" => "Skedarë të eliminuar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 280c2b02820..8302df5f262 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,4 +1,5 @@ - "врати у претходно стање", "Error" => "Грешка", "Delete permanently" => "Обриши за стално", @@ -12,3 +13,4 @@ "Restore" => "Врати", "Delete" => "Обриши" ); +$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);"; diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index 2cb86adfd40..0511d9f609d 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -1,4 +1,6 @@ - "Ime", "Delete" => "Obriši" ); +$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);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 2e4a5b42612..9eb83734b49 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -1,4 +1,5 @@ - "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", "perform restore operation" => "utför återställning", @@ -17,3 +18,4 @@ "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index 2badaa85467..35253900b19 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "வழு", "Name" => "பெயர்", "1 folder" => "1 கோப்புறை", @@ -7,3 +8,4 @@ "{count} files" => "{எண்ணிக்கை} கோப்புகள்", "Delete" => "நீக்குக" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 9b36ac4272e..f89a9fda5f7 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,6 +1,8 @@ - "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", "Delete" => "తొలగించు" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index 82d3cd23530..dc49155b9be 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ดำเนินการคืนค่า", "Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", @@ -12,3 +13,4 @@ "Delete" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index 53c143c3a9d..df1b692af51 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -1,4 +1,5 @@ - "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", "perform restore operation" => "Geri yükleme işlemini gerçekleştir", @@ -16,3 +17,4 @@ "Delete" => "Sil", "Deleted Files" => "Silinen Dosyalar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index c369e385f74..65466685971 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,4 +1,5 @@ - "خاتالىق", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Name" => "ئاتى", @@ -9,3 +10,4 @@ "Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index b2f10760216..93e9b6aa7b0 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -1,4 +1,5 @@ - "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", "perform restore operation" => "виконати операцію відновлення", @@ -17,3 +18,4 @@ "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); +$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);"; diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index e13a623fecc..49c82f53872 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,3 +1,5 @@ - "ایرر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index a8924c541f8..5e16a8392dd 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", "perform restore operation" => "thực hiện phục hồi", @@ -16,3 +17,4 @@ "Delete" => "Xóa", "Deleted Files" => "File đã xóa" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 1ab193517f8..768a9616d71 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "出错", "Delete permanently" => "永久删除", "Name" => "名称", @@ -8,3 +9,4 @@ "{count} files" => "{count} 个文件", "Delete" => "删除" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index 9c0f0bb3b75..c149c6c966c 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", "perform restore operation" => "执行恢复操作", @@ -16,3 +17,4 @@ "Delete" => "删除", "Deleted Files" => "已删除文件" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 53dd9869219..6b9f6506874 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -1,6 +1,8 @@ - "錯誤", "Name" => "名稱", "{count} folders" => "{}文件夾", "Delete" => "刪除" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index a9dcba8f7d7..39fe4ce988a 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法永久刪除 %s", "Couldn't restore %s" => "無法復原 %s", "perform restore operation" => "進行復原動作", @@ -16,3 +17,4 @@ "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/ar.php b/apps/files_versions/l10n/ar.php index 278b793a86d..53eae8e9fee 100644 --- a/apps/files_versions/l10n/ar.php +++ b/apps/files_versions/l10n/ar.php @@ -1,4 +1,6 @@ - "الإصدارات", "Restore" => "استعيد" ); +$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;"; diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php index 25254cfb4d8..6268f408f7a 100644 --- a/apps/files_versions/l10n/bg_BG.php +++ b/apps/files_versions/l10n/bg_BG.php @@ -1,4 +1,6 @@ - "Версии", "Restore" => "Възтановяване" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index f3b0071a356..ce7f81b0095 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,3 +1,5 @@ - "ভার্সন" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 7fd168e1cc6..e5c47a277f9 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut revertir: %s", "Versions" => "Versions", "Failed to revert {file} to revision {timestamp}." => "Ha fallat en retornar {file} a la revisió {timestamp}", @@ -6,3 +7,4 @@ "No other versions available" => "No hi ha altres versions disponibles", "Restore" => "Recupera" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index bc6f4cf4a19..a2fc76d443d 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nelze navrátit: %s", "Versions" => "Verze", "Failed to revert {file} to revision {timestamp}." => "Selhalo navrácení souboru {file} na verzi {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Žádné další verze nejsou dostupné", "Restore" => "Obnovit" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php index 4a94a749f2e..a18bc717708 100644 --- a/apps/files_versions/l10n/da.php +++ b/apps/files_versions/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke genskabe: %s", "Versions" => "Versioner", "Failed to revert {file} to revision {timestamp}." => "Kunne ikke tilbagerulle {file} til den tidligere udgave: {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Ingen andre versioner tilgængelig", "Restore" => "Gendan" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index e89c216fe43..c8b45eee500 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,4 +1,5 @@ - "Konnte %s nicht zurücksetzen", "Versions" => "Versionen", "Failed to revert {file} to revision {timestamp}." => "Konnte {file} der Revision {timestamp} nicht rückgänging machen.", @@ -6,3 +7,4 @@ "No other versions available" => "Keine anderen Versionen verfügbar", "Restore" => "Wiederherstellen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/de_DE.php b/apps/files_versions/l10n/de_DE.php index e89c216fe43..c8b45eee500 100644 --- a/apps/files_versions/l10n/de_DE.php +++ b/apps/files_versions/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Konnte %s nicht zurücksetzen", "Versions" => "Versionen", "Failed to revert {file} to revision {timestamp}." => "Konnte {file} der Revision {timestamp} nicht rückgänging machen.", @@ -6,3 +7,4 @@ "No other versions available" => "Keine anderen Versionen verfügbar", "Restore" => "Wiederherstellen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index 3269fbe1201..af608e7c042 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,4 +1,5 @@ - "Αδυναμία επαναφοράς του: %s", "Versions" => "Εκδόσεις", "Failed to revert {file} to revision {timestamp}." => "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες", "Restore" => "Επαναφορά" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index 72d8625be9e..c023d5fbc37 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,5 +1,7 @@ - "Ne eblas malfari: %s", "Versions" => "Versioj", "Restore" => "Restaŭri" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index b2857bded17..c87488bf7a9 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,7 @@ - "No se puede revertir: %s", "Versions" => "Revisiones", "Restore" => "Recuperar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/es_AR.php b/apps/files_versions/l10n/es_AR.php index ec55fa8ebf5..068f835d0af 100644 --- a/apps/files_versions/l10n/es_AR.php +++ b/apps/files_versions/l10n/es_AR.php @@ -1,5 +1,7 @@ - "No se pudo revertir: %s ", "Versions" => "Versiones", "Restore" => "Recuperar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index 271d424df43..73a60ade7cf 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -1,5 +1,7 @@ - "Ei suuda taastada faili: %s", "Versions" => "Versioonid", "Restore" => "Taasta" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index 918b20fb0fd..249ae096630 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin izan da leheneratu: %s", "Versions" => "Bertsioak", "Failed to revert {file} to revision {timestamp}." => "Errore bat izan da {fitxategia} {timestamp} bertsiora leheneratzean.", @@ -6,3 +7,4 @@ "No other versions available" => "Ez dago bertsio gehiago eskuragarri", "Restore" => "Berrezarri" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index 9f77e526624..8edfc2ee265 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -1,5 +1,7 @@ - "بازگردانی امکان ناپذیر است: %s", "Versions" => "نسخه ها", "Restore" => "بازیابی" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index 9f6f38ce05d..fb011df2a13 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Palautus epäonnistui: %s", "Versions" => "Versiot", "Failed to revert {file} to revision {timestamp}." => "Tiedoston {file} palautus versioon {timestamp} epäonnistui.", @@ -6,3 +7,4 @@ "No other versions available" => "Ei muita versioita saatavilla", "Restore" => "Palauta" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 74931bd7046..537783e6c9f 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,5 +1,7 @@ - "Impossible de restaurer %s", "Versions" => "Versions", "Restore" => "Restaurer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_versions/l10n/gl.php b/apps/files_versions/l10n/gl.php index 66e3ccc5dc7..1ccdc95f1eb 100644 --- a/apps/files_versions/l10n/gl.php +++ b/apps/files_versions/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel reverter: %s", "Versions" => "Versións", "Failed to revert {file} to revision {timestamp}." => "Non foi posíbel reverter {file} á revisión {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Non hai outras versións dispoñíbeis", "Restore" => "Restablecer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php index bcac74be08b..848e4712276 100644 --- a/apps/files_versions/l10n/he.php +++ b/apps/files_versions/l10n/he.php @@ -1,5 +1,7 @@ - "לא ניתן להחזיר: %s", "Versions" => "גרסאות", "Restore" => "שחזור" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/hu_HU.php b/apps/files_versions/l10n/hu_HU.php index fe3db5211f8..13b3fe7cace 100644 --- a/apps/files_versions/l10n/hu_HU.php +++ b/apps/files_versions/l10n/hu_HU.php @@ -1,5 +1,10 @@ - "Nem sikerült átállni a változatra: %s", "Versions" => "Az állományok korábbi változatai", +"Failed to revert {file} to revision {timestamp}." => "Nem sikerült a(z) {file} állományt erre visszaállítani: {timestamp}.", +"More versions..." => "További változatok...", +"No other versions available" => "Az állománynak nincs több változata", "Restore" => "Visszaállítás" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/id.php b/apps/files_versions/l10n/id.php index 96d96130d18..ee7061805ba 100644 --- a/apps/files_versions/l10n/id.php +++ b/apps/files_versions/l10n/id.php @@ -1,5 +1,7 @@ - "Tidak dapat mengembalikan: %s", "Versions" => "Versi", "Restore" => "Pulihkan" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/is.php b/apps/files_versions/l10n/is.php index d165a78c31e..0f643122ad0 100644 --- a/apps/files_versions/l10n/is.php +++ b/apps/files_versions/l10n/is.php @@ -1,3 +1,5 @@ - "Útgáfur" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index b59d2edfec9..6e4aee450a6 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile ripristinare: %s", "Versions" => "Versioni", "Failed to revert {file} to revision {timestamp}." => "Ripristino di {file} alla revisione {timestamp} non riuscito.", @@ -6,3 +7,4 @@ "No other versions available" => "Non sono disponibili altre versioni", "Restore" => "Ripristina" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index 8846d58e499..ec2601aafbd 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "元に戻せませんでした: %s", "Versions" => "バージョン", "Failed to revert {file} to revision {timestamp}." => "{file} を {timestamp} のリヴィジョンに戻すことができません。", @@ -6,3 +7,4 @@ "No other versions available" => "利用可能な他のバージョンはありません", "Restore" => "復元" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/ka_GE.php b/apps/files_versions/l10n/ka_GE.php index 10fe7e705f3..41e65903b65 100644 --- a/apps/files_versions/l10n/ka_GE.php +++ b/apps/files_versions/l10n/ka_GE.php @@ -1,5 +1,7 @@ - "ვერ მოხერხდა უკან დაბრუნება: %s", "Versions" => "ვერსიები", "Restore" => "აღდგენა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index 59856397f5a..365adc25115 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -1,5 +1,7 @@ - "되돌릴 수 없습니다: %s", "Versions" => "버전", "Restore" => "복원" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/ku_IQ.php b/apps/files_versions/l10n/ku_IQ.php index 9132caf75e3..de2696509bb 100644 --- a/apps/files_versions/l10n/ku_IQ.php +++ b/apps/files_versions/l10n/ku_IQ.php @@ -1,3 +1,5 @@ - "وه‌شان" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php index 84963febb53..4e1af5fcc29 100644 --- a/apps/files_versions/l10n/lt_LT.php +++ b/apps/files_versions/l10n/lt_LT.php @@ -1,5 +1,7 @@ - "Nepavyko atstatyti: %s", "Versions" => "Versijos", "Restore" => "Atstatyti" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_versions/l10n/lv.php b/apps/files_versions/l10n/lv.php index 90d54e35de1..c686370ac31 100644 --- a/apps/files_versions/l10n/lv.php +++ b/apps/files_versions/l10n/lv.php @@ -1,5 +1,7 @@ - "Nevarēja atgriezt — %s", "Versions" => "Versijas", "Restore" => "Atjaunot" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_versions/l10n/mk.php b/apps/files_versions/l10n/mk.php index 6a1882c2bfd..01a98808cff 100644 --- a/apps/files_versions/l10n/mk.php +++ b/apps/files_versions/l10n/mk.php @@ -1,3 +1,5 @@ - "Версии" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_versions/l10n/nb_NO.php b/apps/files_versions/l10n/nb_NO.php index 18ff750f861..2a0a6d8a76d 100644 --- a/apps/files_versions/l10n/nb_NO.php +++ b/apps/files_versions/l10n/nb_NO.php @@ -1,4 +1,6 @@ - "Versjoner", "Restore" => "Gjenopprett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index 77f3e1836cf..ec7551d9596 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,4 +1,5 @@ - "Kon niet terugdraaien: %s", "Versions" => "Versies", "Failed to revert {file} to revision {timestamp}." => "Kon {file} niet terugdraaien naar revisie {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Geen andere versies beschikbaar", "Restore" => "Herstellen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/nn_NO.php b/apps/files_versions/l10n/nn_NO.php index ce6db36a55e..79b518bc18d 100644 --- a/apps/files_versions/l10n/nn_NO.php +++ b/apps/files_versions/l10n/nn_NO.php @@ -1,5 +1,7 @@ - "Klarte ikkje å tilbakestilla: %s", "Versions" => "Utgåver", "Restore" => "Gjenopprett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index 00f4ac3f768..3d6be24a63d 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można było przywrócić: %s", "Versions" => "Wersje", "Failed to revert {file} to revision {timestamp}." => "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}.", @@ -6,3 +7,4 @@ "No other versions available" => "Nie są dostępne żadne inne wersje", "Restore" => "Przywróć" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index 711a38b3bf4..b1958825b47 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Impossível reverter: %s", "Versions" => "Versões", "Failed to revert {file} to revision {timestamp}." => "Falha ao reverter {file} para a revisão {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Nenhuma outra versão disponível", "Restore" => "Restaurar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_versions/l10n/pt_PT.php b/apps/files_versions/l10n/pt_PT.php index b0262765ca1..e4371f53409 100644 --- a/apps/files_versions/l10n/pt_PT.php +++ b/apps/files_versions/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Não foi possível reverter: %s", "Versions" => "Versões", "Failed to revert {file} to revision {timestamp}." => "Falhou a recuperação do ficheiro {file} para a revisão {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Não existem versões mais antigas", "Restore" => "Restaurar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ro.php b/apps/files_versions/l10n/ro.php index 240cd181aed..5151b1dceb9 100644 --- a/apps/files_versions/l10n/ro.php +++ b/apps/files_versions/l10n/ro.php @@ -1,4 +1,6 @@ - "Nu a putut reveni: %s", "Versions" => "Versiuni" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index eb5e404600a..12f9f77b94d 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,4 +1,5 @@ - "Не может быть возвращён: %s", "Versions" => "Версии", "Failed to revert {file} to revision {timestamp}." => "Не удалось возвратить {file} к ревизии {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Других версий не доступно", "Restore" => "Восстановить" ); +$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);"; diff --git a/apps/files_versions/l10n/si_LK.php b/apps/files_versions/l10n/si_LK.php index c7ee63d8ef6..7ee8da049b7 100644 --- a/apps/files_versions/l10n/si_LK.php +++ b/apps/files_versions/l10n/si_LK.php @@ -1,3 +1,5 @@ - "අනුවාද" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/sk_SK.php b/apps/files_versions/l10n/sk_SK.php index e22a5bb33f6..5edcea3606c 100644 --- a/apps/files_versions/l10n/sk_SK.php +++ b/apps/files_versions/l10n/sk_SK.php @@ -1,5 +1,10 @@ - "Nemožno obnoviť: %s", "Versions" => "Verzie", +"Failed to revert {file} to revision {timestamp}." => "Zlyhalo obnovenie súboru {file} na verziu {timestamp}.", +"More versions..." => "Viac verzií...", +"No other versions available" => "Žiadne ďalšie verzie nie sú dostupné", "Restore" => "Obnoviť" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index 4b1c10c773b..809ab34c262 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,5 +1,7 @@ - "Ni mogoče povrniti: %s", "Versions" => "Različice", "Restore" => "Obnovi" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_versions/l10n/sr.php b/apps/files_versions/l10n/sr.php index 111fa776884..d4eb0be19cb 100644 --- a/apps/files_versions/l10n/sr.php +++ b/apps/files_versions/l10n/sr.php @@ -1,3 +1,5 @@ - "Врати" ); +$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);"; diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 86d215e5016..0fd073d5cbe 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,4 +1,5 @@ - "Kunde inte återställa: %s", "Versions" => "Versioner", "Failed to revert {file} to revision {timestamp}." => "Kunde inte återställa {file} till revision {timestamp}.", @@ -6,3 +7,4 @@ "No other versions available" => "Inga andra versioner tillgängliga", "Restore" => "Återskapa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ta_LK.php b/apps/files_versions/l10n/ta_LK.php index 61a47e42f0a..3c21735fa84 100644 --- a/apps/files_versions/l10n/ta_LK.php +++ b/apps/files_versions/l10n/ta_LK.php @@ -1,3 +1,5 @@ - "பதிப்புகள்" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index d42608287a6..97c89b2f809 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,4 +1,6 @@ - "รุ่น", "Restore" => "คืนค่า" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php index 23da6b6b43d..f2bc1e6c0aa 100644 --- a/apps/files_versions/l10n/tr.php +++ b/apps/files_versions/l10n/tr.php @@ -1,5 +1,7 @@ - "Geri alınamıyor: %s", "Versions" => "Sürümler", "Restore" => "Geri yükle" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_versions/l10n/ug.php b/apps/files_versions/l10n/ug.php index 3b63272d927..984e6c314c7 100644 --- a/apps/files_versions/l10n/ug.php +++ b/apps/files_versions/l10n/ug.php @@ -1,4 +1,6 @@ - "ئەسلىگە قايتۇرالمايدۇ: %s", "Versions" => "نەشرى" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/uk.php b/apps/files_versions/l10n/uk.php index afe44ff3be0..d75160f2864 100644 --- a/apps/files_versions/l10n/uk.php +++ b/apps/files_versions/l10n/uk.php @@ -1,5 +1,7 @@ - "Не вдалося відновити: %s", "Versions" => "Версії", "Restore" => "Відновити" ); +$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);"; diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index f3677c8a775..9d72612c2ad 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -1,5 +1,7 @@ - "Không thể khôi phục: %s", "Versions" => "Phiên bản", "Restore" => "Khôi phục" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php index e5f4733da8d..aa0a59b71a3 100644 --- a/apps/files_versions/l10n/zh_CN.GB2312.php +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -1,4 +1,6 @@ - "无法恢复:%s", "Versions" => "版本" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 8dd2559414e..767ca1cf646 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,5 +1,7 @@ - "无法恢复: %s", "Versions" => "版本", "Restore" => "恢复" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_HK.php b/apps/files_versions/l10n/zh_HK.php index 072d5fbdba8..6d249af4b16 100644 --- a/apps/files_versions/l10n/zh_HK.php +++ b/apps/files_versions/l10n/zh_HK.php @@ -1,3 +1,5 @@ - "版本" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_TW.php b/apps/files_versions/l10n/zh_TW.php index 7498c6951cd..55a3dca3c32 100644 --- a/apps/files_versions/l10n/zh_TW.php +++ b/apps/files_versions/l10n/zh_TW.php @@ -1,5 +1,7 @@ - "無法還原:%s", "Versions" => "版本", "Restore" => "復原" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/af_ZA.php b/apps/user_ldap/l10n/af_ZA.php index 944495f3869..32feab61b49 100644 --- a/apps/user_ldap/l10n/af_ZA.php +++ b/apps/user_ldap/l10n/af_ZA.php @@ -1,4 +1,6 @@ - "Wagwoord", "Help" => "Hulp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index 5f8b6b81455..3dd88eb2655 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -1,6 +1,8 @@ - "فشل الحذف", "Error" => "خطأ", "Password" => "كلمة المرور", "Help" => "المساعدة" ); +$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;"; diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php index 0330046d80e..b750884e9de 100644 --- a/apps/user_ldap/l10n/bg_BG.php +++ b/apps/user_ldap/l10n/bg_BG.php @@ -1,5 +1,7 @@ - "Грешка", "Password" => "Парола", "Help" => "Помощ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 6ae99d69a1c..ae8571e3d87 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "সমস্যা", "Host" => "হোস্ট", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://", @@ -32,3 +33,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।", "Help" => "সহায়িকা" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 8cf51f537b0..a6b34399cd4 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -1,4 +1,5 @@ - "Ha fallat en eliminar els mapatges", "Failed to delete the server configuration" => "Ha fallat en eliminar la configuració del servidor", "The configuration is valid and the connection could be established!" => "La configuració és vàlida i s'ha pogut establir la comunicació!", @@ -87,3 +88,4 @@ "Test Configuration" => "Comprovació de la configuració", "Help" => "Ajuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index dd02f8bc3e4..165946a3b30 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Selhalo zrušení mapování.", "Failed to delete the server configuration" => "Selhalo smazání nastavení serveru", "The configuration is valid and the connection could be established!" => "Nastavení je v pořádku a spojení bylo navázáno.", @@ -87,3 +88,4 @@ "Test Configuration" => "Vyzkoušet nastavení", "Help" => "Nápověda" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php index abe2336b2ba..71a38fad25d 100644 --- a/apps/user_ldap/l10n/cy_GB.php +++ b/apps/user_ldap/l10n/cy_GB.php @@ -1,6 +1,8 @@ - "Methwyd dileu", "Error" => "Gwall", "Password" => "Cyfrinair", "Help" => "Cymorth" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index 71fe042406b..ab59d3ed506 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke slette server konfigurationen", "The configuration is valid and the connection could be established!" => "Konfigurationen er korrekt og forbindelsen kunne etableres!", "The configuration is invalid. Please look in the ownCloud log for further details." => "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer.", @@ -48,3 +49,4 @@ "Test Configuration" => "Test Konfiguration", "Help" => "Hjælp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 09b17e01e2e..73649f7c0ac 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,4 +1,5 @@ - "Löschen der Zuordnung fehlgeschlagen.", "Failed to delete the server configuration" => "Löschen der Serverkonfiguration fehlgeschlagen", "The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", @@ -87,3 +88,4 @@ "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 3240f1653cd..0052b75b33a 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Löschen der Zuordnung fehlgeschlagen.", "Failed to delete the server configuration" => "Löschen der Serverkonfiguration fehlgeschlagen", "The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", @@ -87,3 +88,4 @@ "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index ae982ab4c56..140925f6126 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -1,4 +1,5 @@ - "Αποτυχία διαγραφής ρυθμίσεων διακομιστή", "The configuration is valid and the connection could be established!" => "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια.", @@ -70,3 +71,4 @@ "Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/en@pirate.php b/apps/user_ldap/l10n/en@pirate.php index 482632f3fda..e269c57c3d0 100644 --- a/apps/user_ldap/l10n/en@pirate.php +++ b/apps/user_ldap/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "Passcode" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 7f9aa0b3f1c..2973e05388b 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -1,4 +1,5 @@ - "Forigo malsukcesis", "Success" => "Sukceso", "Error" => "Eraro", @@ -32,3 +33,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon.", "Help" => "Helpo" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index f11dadfbef5..29f47ced437 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -1,4 +1,5 @@ - "Ocurrió un fallo al borrar las asignaciones.", "Failed to delete the server configuration" => "No se pudo borrar la configuración del servidor", "The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión puede establecerse!", @@ -79,3 +80,4 @@ "Test Configuration" => "Configuración de prueba", "Help" => "Ayuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 8a44d3b84ad..c4f339f76bb 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Hubo un error al borrar las asignaciones.", "Failed to delete the server configuration" => "Fallo al borrar la configuración del servidor", "The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión pudo ser establecida.", @@ -79,3 +80,4 @@ "Test Configuration" => "Probar configuración", "Help" => "Ayuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 7e5c0a6fec8..09e1a13f03c 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Vastendususte puhastamine ebaõnnestus.", "Failed to delete the server configuration" => "Serveri seadistuse kustutamine ebaõnnestus", "The configuration is valid and the connection could be established!" => "Seadistus on korrektne ning ühendus on olemas!", @@ -79,3 +80,4 @@ "Test Configuration" => "Testi seadistust", "Help" => "Abiinfo" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index c825a634272..59e8371d9c2 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -1,4 +1,5 @@ - "Zerbitzariaren konfigurazioa ezabatzeak huts egin du", "The configuration is valid and the connection could be established!" => "Konfigurazioa egokia da eta konexioa ezarri daiteke!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak.", @@ -71,3 +72,4 @@ "Test Configuration" => "Egiaztatu Konfigurazioa", "Help" => "Laguntza" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index 151e0cab285..7b65c798d82 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -1,4 +1,5 @@ - "عدم موفقیت در پاک کردن نگاشت.", "Failed to delete the server configuration" => "عملیات حذف پیکربندی سرور ناموفق ماند", "The configuration is valid and the connection could be established!" => "پیکربندی معتبر است و ارتباط می تواند برقرار شود", @@ -65,3 +66,4 @@ "Test Configuration" => "امتحان پیکربندی", "Help" => "راه‌نما" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 7833b301aca..744833ff7b3 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Poisto epäonnistui", "Keep settings?" => "Säilytetäänkö asetukset?", "Cannot add server configuration" => "Palvelinasetusten lisäys epäonnistui", @@ -43,3 +44,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti.", "Help" => "Ohje" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 4820960eb36..5fc02e58372 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,4 +1,5 @@ - "Erreur lors de la suppression des associations.", "Failed to delete the server configuration" => "Échec de la suppression de la configuration du serveur", "The configuration is valid and the connection could be established!" => "La configuration est valide et la connexion peut être établie !", @@ -79,3 +80,4 @@ "Test Configuration" => "Tester la configuration", "Help" => "Aide" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 14706db8d1d..ce4967f8b8c 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel limpar as asignacións.", "Failed to delete the server configuration" => "Non foi posíbel eliminar a configuración do servidor", "The configuration is valid and the connection could be established!" => "A configuración é correcta e pode estabelecerse a conexión.", @@ -87,3 +88,4 @@ "Test Configuration" => "Probar a configuración", "Help" => "Axuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/he.php b/apps/user_ldap/l10n/he.php index 0d60768dcfc..b39a4277078 100644 --- a/apps/user_ldap/l10n/he.php +++ b/apps/user_ldap/l10n/he.php @@ -1,4 +1,5 @@ - "מחיקה נכשלה", "Keep settings?" => "האם לשמור את ההגדרות?", "Cannot add server configuration" => "לא ניתן להוסיף את הגדרות השרת", @@ -21,3 +22,4 @@ "in bytes" => "בבתים", "Help" => "עזרה" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/hi.php b/apps/user_ldap/l10n/hi.php index 8e8e4e8ff69..24ae7a02176 100644 --- a/apps/user_ldap/l10n/hi.php +++ b/apps/user_ldap/l10n/hi.php @@ -1,5 +1,7 @@ - "त्रुटि", "Password" => "पासवर्ड", "Help" => "सहयोग" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/hr.php b/apps/user_ldap/l10n/hr.php index cc8918301f5..c9445de0dfc 100644 --- a/apps/user_ldap/l10n/hr.php +++ b/apps/user_ldap/l10n/hr.php @@ -1,5 +1,7 @@ - "Greška", "Password" => "Lozinka", "Help" => "Pomoć" ); +$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;"; diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 26c96942cc4..61fa37ed95c 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Nem sikerült törölni a hozzárendeléseket.", "Failed to delete the server configuration" => "Nem sikerült törölni a kiszolgáló konfigurációját", "The configuration is valid and the connection could be established!" => "A konfiguráció érvényes, és a kapcsolat létrehozható!", @@ -79,3 +80,4 @@ "Test Configuration" => "A beállítások tesztelése", "Help" => "Súgó" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php index 624fd4fa0eb..9de7344f15f 100644 --- a/apps/user_ldap/l10n/ia.php +++ b/apps/user_ldap/l10n/ia.php @@ -1,5 +1,7 @@ - "Error", "Password" => "Contrasigno", "Help" => "Adjuta" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 0231e2a5961..efaf8e3c926 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -1,4 +1,5 @@ - "Gagal menghapus konfigurasi server", "The configuration is valid and the connection could be established!" => "Konfigurasi valid dan koneksi dapat dilakukan!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurasi valid, tetapi Bind gagal. Silakan cek pengaturan server dan keamanan.", @@ -70,3 +71,4 @@ "Test Configuration" => "Uji Konfigurasi", "Help" => "Bantuan" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/is.php b/apps/user_ldap/l10n/is.php index 6ea474f56df..70c6bb61570 100644 --- a/apps/user_ldap/l10n/is.php +++ b/apps/user_ldap/l10n/is.php @@ -1,4 +1,5 @@ - "Geyma stillingar ?", "Error" => "Villa", "Host" => "Netþjónn", @@ -6,3 +7,4 @@ "Test Configuration" => "Prúfa uppsetningu", "Help" => "Hjálp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 18a1c3f3398..0a44850fdb0 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -1,4 +1,5 @@ - "Cancellazione delle associazioni non riuscita.", "Failed to delete the server configuration" => "Eliminazione della configurazione del server non riuscita", "The configuration is valid and the connection could be established!" => "La configurazione è valida e la connessione può essere stabilita.", @@ -87,3 +88,4 @@ "Test Configuration" => "Prova configurazione", "Help" => "Aiuto" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 8647574c524..03ed2e9db96 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "マッピングのクリアに失敗しました。", "Failed to delete the server configuration" => "サーバ設定の削除に失敗しました", "The configuration is valid and the connection could be established!" => "設定は有効であり、接続を確立しました!", @@ -15,6 +16,7 @@ "Connection test failed" => "接続テストに失敗しました", "Do you really want to delete the current Server Configuration?" => "現在のサーバ設定を本当に削除してもよろしいですか?", "Confirm Deletion" => "削除の確認", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。", "Server configuration" => "サーバ設定", "Add Server Configuration" => "サーバ設定を追加", @@ -44,6 +46,7 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバのレプリカである必要があります。", "Backup (Replica) Port" => "バックアップ(レプリカ)ポート", "Disable Main Server" => "メインサーバを無効にする", +"Only connect to the replica server." => "レプリカサーバーにのみ接続します。", "Use TLS" => "TLSを利用", "Do not use it additionally for LDAPS connections, it will fail." => "LDAPS接続のために追加でそれを利用しないで下さい。失敗します。", "Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバ(Windows)", @@ -79,3 +82,4 @@ "Test Configuration" => "設定をテスト", "Help" => "ヘルプ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ka.php b/apps/user_ldap/l10n/ka.php index 169926283e9..3de4d3c722a 100644 --- a/apps/user_ldap/l10n/ka.php +++ b/apps/user_ldap/l10n/ka.php @@ -1,4 +1,6 @@ - "პაროლი", "Help" => "შველა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index 07cd3ad7965..7317a257daf 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "შეცდომა სერვერის კონფიგურაციის წაშლისას", "The configuration is valid and the connection could be established!" => "კონფიგურაცია მართებულია და კავშირი დამყარდება!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები.", @@ -70,3 +71,4 @@ "Test Configuration" => "კავშირის ტესტირება", "Help" => "დახმარება" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index 549233e20c9..650781fe4a2 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,4 +1,5 @@ - "삭제 실패", "Keep settings?" => "설정을 유지합니까?", "Error" => "오류", @@ -48,3 +49,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오.", "Help" => "도움말" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ku_IQ.php b/apps/user_ldap/l10n/ku_IQ.php index 00602ae5d79..d211e9554a8 100644 --- a/apps/user_ldap/l10n/ku_IQ.php +++ b/apps/user_ldap/l10n/ku_IQ.php @@ -1,6 +1,8 @@ - "سه‌رکه‌وتن", "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", "Help" => "یارمەتی" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/lb.php b/apps/user_ldap/l10n/lb.php index cf58c9ec5be..0a268bbb391 100644 --- a/apps/user_ldap/l10n/lb.php +++ b/apps/user_ldap/l10n/lb.php @@ -1,6 +1,8 @@ - "Konnt net läschen", "Error" => "Fehler", "Password" => "Passwuert", "Help" => "Hëllef" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php index 6f396847b8e..3046824e6c1 100644 --- a/apps/user_ldap/l10n/lt_LT.php +++ b/apps/user_ldap/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Ištrinti nepavyko", "Error" => "Klaida", "Password" => "Slaptažodis", @@ -9,3 +10,4 @@ "Not recommended, use for testing only." => "Nerekomenduojama, naudokite tik testavimui.", "Help" => "Pagalba" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php index 38157c51f1b..7d3d088b40a 100644 --- a/apps/user_ldap/l10n/lv.php +++ b/apps/user_ldap/l10n/lv.php @@ -1,4 +1,5 @@ - "Neizdevās izdzēst servera konfigurāciju", "The configuration is valid and the connection could be established!" => "Konfigurācija ir derīga un varēja izveidot savienojumu!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus.", @@ -69,3 +70,4 @@ "Test Configuration" => "Testa konfigurācija", "Help" => "Palīdzība" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php index 6a060aca415..3d261c3d80c 100644 --- a/apps/user_ldap/l10n/mk.php +++ b/apps/user_ldap/l10n/mk.php @@ -1,4 +1,5 @@ - "Бришењето е неуспешно", "Error" => "Грешка", "Host" => "Домаќин", @@ -6,3 +7,4 @@ "Password" => "Лозинка", "Help" => "Помош" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/user_ldap/l10n/ms_MY.php b/apps/user_ldap/l10n/ms_MY.php index b3004028c58..5d3f8019ceb 100644 --- a/apps/user_ldap/l10n/ms_MY.php +++ b/apps/user_ldap/l10n/ms_MY.php @@ -1,6 +1,8 @@ - "Pemadaman gagal", "Error" => "Ralat", "Password" => "Kata laluan", "Help" => "Bantuan" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/my_MM.php b/apps/user_ldap/l10n/my_MM.php index ee8d3dd26fa..3d9c248f66a 100644 --- a/apps/user_ldap/l10n/my_MM.php +++ b/apps/user_ldap/l10n/my_MM.php @@ -1,4 +1,6 @@ - "စကားဝှက်", "Help" => "အကူအညီ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 880fb41553f..8f1c338b124 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Klarte ikke å slette tjener-konfigurasjonen.", "The configuration is valid and the connection could be established!" => "Konfigurasjonen er i orden og tilkoblingen skal være etablert!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen.", @@ -54,3 +55,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt.", "Help" => "Hjelp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 6b42ce8116b..dda46a386d6 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,4 +1,5 @@ - "Niet gelukt de vertalingen leeg te maken.", "Failed to delete the server configuration" => "Verwijderen serverconfiguratie mislukt", "The configuration is valid and the connection could be established!" => "De configuratie is geldig en de verbinding is geslaagd!", @@ -83,3 +84,4 @@ "Test Configuration" => "Test configuratie", "Help" => "Help" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/nn_NO.php b/apps/user_ldap/l10n/nn_NO.php index 45910022803..5e584aa31e3 100644 --- a/apps/user_ldap/l10n/nn_NO.php +++ b/apps/user_ldap/l10n/nn_NO.php @@ -1,6 +1,8 @@ - "Feil ved sletting", "Error" => "Feil", "Password" => "Passord", "Help" => "Hjelp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/oc.php b/apps/user_ldap/l10n/oc.php index 95ab51caadd..81df26117f1 100644 --- a/apps/user_ldap/l10n/oc.php +++ b/apps/user_ldap/l10n/oc.php @@ -1,6 +1,8 @@ - "Fracàs d'escafatge", "Error" => "Error", "Password" => "Senhal", "Help" => "Ajuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index ad577457a2f..87dfe41a317 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie udało się wyczyścić mapowania.", "Failed to delete the server configuration" => "Nie można usunąć konfiguracji serwera", "The configuration is valid and the connection could be established!" => "Konfiguracja jest prawidłowa i można ustanowić połączenie!", @@ -79,3 +80,4 @@ "Test Configuration" => "Konfiguracja testowa", "Help" => "Pomoc" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 35284b24b7a..0145e8fe2a4 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Falha ao limpar os mapeamentos.", "Failed to delete the server configuration" => "Falha ao deletar a configuração do servidor", "The configuration is valid and the connection could be established!" => "A configuração é válida e a conexão foi estabelecida!", @@ -87,3 +88,4 @@ "Test Configuration" => "Teste de Configuração", "Help" => "Ajuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 0e5eac91c3e..0abb049a155 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Falhou a limpar os mapas", "Failed to delete the server configuration" => "Erro ao eliminar as configurações do servidor", "The configuration is valid and the connection could be established!" => "A configuração está correcta e foi possível estabelecer a ligação!", @@ -79,3 +80,4 @@ "Test Configuration" => "Testar a configuração", "Help" => "Ajuda" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index 2e03ddcca42..cdc94e6a493 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -1,4 +1,5 @@ - "Ștergerea a eșuat", "Success" => "Succes", "Error" => "Eroare", @@ -38,3 +39,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD.", "Help" => "Ajutor" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 704d8149904..ef115f6bbd7 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -1,4 +1,5 @@ - "Не удалось очистить соотвествия.", "Failed to delete the server configuration" => "Не удалось удалить конфигурацию сервера", "The configuration is valid and the connection could be established!" => "Конфигурация правильная и подключение может быть установлено!", @@ -80,3 +81,4 @@ "Test Configuration" => "Тестовая конфигурация", "Help" => "Помощь" ); +$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);"; diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index 7b6833ebf8c..623d8f2d8ec 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -1,4 +1,6 @@ - "Успех", "Error" => "Ошибка" ); +$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);"; diff --git a/apps/user_ldap/l10n/si_LK.php b/apps/user_ldap/l10n/si_LK.php index 1d81b341b46..21c8f047ff6 100644 --- a/apps/user_ldap/l10n/si_LK.php +++ b/apps/user_ldap/l10n/si_LK.php @@ -1,4 +1,5 @@ - "මකාදැමීම අසාර්ථකයි", "Success" => "සාර්ථකයි", "Error" => "දෝෂයක්", @@ -14,3 +15,4 @@ "Not recommended, use for testing only." => "නිර්දේශ කළ නොහැක. පරීක්ෂණ සඳහා පමණක් භාවිත කරන්න", "Help" => "උදව්" ); +$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 6c0f10f8910..f02828daf70 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nepodarilo sa vymazať mapovania.", "Failed to delete the server configuration" => "Zlyhalo zmazanie nastavenia servera.", "The configuration is valid and the connection could be established!" => "Nastavenie je v poriadku a pripojenie je stabilné.", @@ -15,6 +16,7 @@ "Connection test failed" => "Test pripojenia zlyhal", "Do you really want to delete the current Server Configuration?" => "Naozaj chcete zmazať súčasné nastavenie servera?", "Confirm Deletion" => "Potvrdiť vymazanie", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval.", "Server configuration" => "Nastavenia servera", "Add Server Configuration" => "Pridať nastavenia servera.", @@ -44,20 +46,24 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Zadajte záložný LDAP/AD. Musí to byť kópia hlavného LDAP/AD servera.", "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.", "Use TLS" => "Použi TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Nepoužívajte pre pripojenie LDAPS, zlyhá.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozlišuje veľkosť znakov (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Ak pripojenie pracuje len s touto možnosťou, tak naimportujte SSL certifikát LDAP servera do vášho %s servera.", "Not recommended, use for testing only." => "Nie je doporučované, len pre testovacie účely.", "Cache Time-To-Live" => "Životnosť objektov v cache", "in seconds. A change empties the cache." => "v sekundách. Zmena vyprázdni vyrovnávaciu pamäť.", "Directory Settings" => "Nastavenie priečinka", "User Display Name Field" => "Pole pre zobrazenia mena používateľa", +"The LDAP attribute to use to generate the user's display name." => "Atribút LDAP použitý na vygenerovanie zobrazovaného mena používateľa. ", "Base User Tree" => "Základný používateľský strom", "One User Base DN per line" => "Jedna používateľská základná DN na riadok", "User Search Attributes" => "Atribúty vyhľadávania používateľov", "Optional; one attribute per line" => "Voliteľné, jeden atribút na jeden riadok", "Group Display Name Field" => "Pole pre zobrazenie mena skupiny", +"The LDAP attribute to use to generate the groups's display name." => "Atribút LDAP použitý na vygenerovanie zobrazovaného mena skupiny.", "Base Group Tree" => "Základný skupinový strom", "One Group Base DN per line" => "Jedna skupinová základná DN na riadok", "Group Search Attributes" => "Atribúty vyhľadávania skupín", @@ -70,12 +76,16 @@ "User Home Folder Naming Rule" => "Pravidlo pre nastavenie mena používateľského priečinka dát", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút LDAP/AD.", "Internal Username" => "Interné používateľské meno", +"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." => "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov.", "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", +"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." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", "UUID Attribute:" => "UUID atribút:", "Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", +"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." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", "Clear Groupname-LDAP Group Mapping" => "Zrušiť mapovanie názvov LDAP skupín", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 63200df0e9c..80abb79e495 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -1,4 +1,5 @@ - "Preslikav ni bilo mogoče izbrisati", "Failed to delete the server configuration" => "Brisanje nastavitev strežnika je spodletelo.", "The configuration is valid and the connection could be established!" => "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!", @@ -79,3 +80,4 @@ "Test Configuration" => "Preizkusne nastavitve", "Help" => "Pomoč" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/user_ldap/l10n/sq.php b/apps/user_ldap/l10n/sq.php index 12324b9f966..2de62cc009a 100644 --- a/apps/user_ldap/l10n/sq.php +++ b/apps/user_ldap/l10n/sq.php @@ -1,5 +1,7 @@ - "Veprim i gabuar", "Password" => "Kodi", "Help" => "Ndihmë" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php index 5c066e675e4..7dd12fe5cca 100644 --- a/apps/user_ldap/l10n/sr.php +++ b/apps/user_ldap/l10n/sr.php @@ -1,4 +1,5 @@ - "Брисање није успело", "Error" => "Грешка", "Host" => "Домаћин", @@ -31,3 +32,4 @@ "in bytes" => "у бајтовима", "Help" => "Помоћ" ); +$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);"; diff --git a/apps/user_ldap/l10n/sr@latin.php b/apps/user_ldap/l10n/sr@latin.php index 005a76d4bbc..07db505ecf3 100644 --- a/apps/user_ldap/l10n/sr@latin.php +++ b/apps/user_ldap/l10n/sr@latin.php @@ -1,4 +1,6 @@ - "Lozinka", "Help" => "Pomoć" ); +$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);"; diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 2617ca414aa..d5d47074bed 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -1,4 +1,5 @@ - "Fel vid rensning av mappningar", "Failed to delete the server configuration" => "Misslyckades med att radera serverinställningen", "The configuration is valid and the connection could be established!" => "Inställningen är giltig och anslutningen kunde upprättas!", @@ -87,3 +88,4 @@ "Test Configuration" => "Testa konfigurationen", "Help" => "Hjälp" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/ta_LK.php b/apps/user_ldap/l10n/ta_LK.php index 0eed8ca12b5..6a541ca2d52 100644 --- a/apps/user_ldap/l10n/ta_LK.php +++ b/apps/user_ldap/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "நீக்கம் தோல்வியடைந்தது", "Error" => "வழு", "Host" => "ஓம்புனர்", @@ -23,3 +24,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "பயனாளர் பெயரிற்கு வெற்றிடமாக விடவும் (பொது இருப்பு). இல்லாவிடின் LDAP/AD பண்புக்கூறை குறிப்பிடவும்.", "Help" => "உதவி" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/te.php b/apps/user_ldap/l10n/te.php index 3f047631cf7..23728a9d34b 100644 --- a/apps/user_ldap/l10n/te.php +++ b/apps/user_ldap/l10n/te.php @@ -1,5 +1,7 @@ - "పొరపాటు", "Password" => "సంకేతపదం", "Help" => "సహాయం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/th_TH.php b/apps/user_ldap/l10n/th_TH.php index a3e3ec2ac49..34739cb5178 100644 --- a/apps/user_ldap/l10n/th_TH.php +++ b/apps/user_ldap/l10n/th_TH.php @@ -1,4 +1,5 @@ - "การลบการกำหนดค่าเซิร์ฟเวอร์ล้มเหลว", "The configuration is valid and the connection could be established!" => "การกำหนดค่าถูกต้องและการเชื่อมต่อสามารถเชื่อมต่อได้!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "การกำหนดค่าถูกต้อง, แต่การผูกข้อมูลล้มเหลว, กรุณาตรวจสอบการตั้งค่าเซิร์ฟเวอร์และข้อมูลการเข้าใช้งาน", @@ -57,3 +58,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "เว้นว่างไว้สำหรับ ชื่อผู้ใช้ (ค่าเริ่มต้น) หรือไม่กรุณาระบุคุณลักษณะของ LDAP/AD", "Help" => "ช่วยเหลือ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index aee38335343..e334ffcc8f5 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -1,4 +1,5 @@ - "Sunucu yapılandırmasını silme başarısız oldu", "The configuration is valid and the connection could be established!" => "Yapılandırma geçerli ve bağlantı kuruldu!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Yapılandırma geçerli fakat bağlanma(bind) başarısız. Lütfen Sunucu ayarları ve kimlik bilgilerini kontrol ediniz.", @@ -61,3 +62,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ", "Help" => "Yardım" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/ug.php b/apps/user_ldap/l10n/ug.php index 8634cdbe1be..39382fed1f0 100644 --- a/apps/user_ldap/l10n/ug.php +++ b/apps/user_ldap/l10n/ug.php @@ -1,4 +1,5 @@ - "ئۆچۈرۈش مەغلۇپ بولدى", "Error" => "خاتالىق", "Host" => "باش ئاپپارات", @@ -12,3 +13,4 @@ "Use TLS" => "TLS ئىشلەت", "Help" => "ياردەم" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 56c6f615ecc..ebf7dbd5d84 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вдалося видалити конфігурацію сервера", "The configuration is valid and the connection could be established!" => "Конфігурація вірна і зв'язок може бути встановлений ​​!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані.", @@ -70,3 +71,4 @@ "Test Configuration" => "Тестове налаштування", "Help" => "Допомога" ); +$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);"; diff --git a/apps/user_ldap/l10n/ur_PK.php b/apps/user_ldap/l10n/ur_PK.php index 83570a596a2..a84be798f92 100644 --- a/apps/user_ldap/l10n/ur_PK.php +++ b/apps/user_ldap/l10n/ur_PK.php @@ -1,5 +1,7 @@ - "ایرر", "Password" => "پاسورڈ", "Help" => "مدد" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php index da7bc38e475..c4fe9b73bcc 100644 --- a/apps/user_ldap/l10n/vi.php +++ b/apps/user_ldap/l10n/vi.php @@ -1,4 +1,5 @@ - "Xóa thất bại", "Success" => "Thành công", "Error" => "Lỗi", @@ -43,3 +44,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Để trống tên người dùng (mặc định). Nếu không chỉ định thuộc tính LDAP/AD", "Help" => "Giúp đỡ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php index fe52e32361e..92eded19b4c 100644 --- a/apps/user_ldap/l10n/zh_CN.GB2312.php +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "删除失败", "Success" => "成功", "Error" => "出错", @@ -34,3 +35,4 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。", "Help" => "帮助" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index 9abe4e7a967..5107b7b1ab7 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "清除映射失败。", "Failed to delete the server configuration" => "未能删除服务器配置", "The configuration is valid and the connection could be established!" => "配置有效,能够建立连接!", @@ -79,3 +80,4 @@ "Test Configuration" => "测试配置", "Help" => "帮助" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/zh_HK.php b/apps/user_ldap/l10n/zh_HK.php index ba55c414790..b656f0fc464 100644 --- a/apps/user_ldap/l10n/zh_HK.php +++ b/apps/user_ldap/l10n/zh_HK.php @@ -1,7 +1,9 @@ - "成功", "Error" => "錯誤", "Password" => "密碼", "Port" => "連接埠", "Help" => "幫助" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php index 3612ca53c1d..84e1f83aefc 100644 --- a/apps/user_ldap/l10n/zh_TW.php +++ b/apps/user_ldap/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "清除映射失敗", "Failed to delete the server configuration" => "刪除伺服器設定時失敗", "The configuration is valid and the connection could be established!" => "設定有效且連線可建立", @@ -70,3 +71,4 @@ "Test Configuration" => "測試此設定", "Help" => "說明" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/ar.php b/apps/user_webdavauth/l10n/ar.php index e708a054099..bdb335fadb4 100644 --- a/apps/user_webdavauth/l10n/ar.php +++ b/apps/user_webdavauth/l10n/ar.php @@ -1,3 +1,5 @@ - "تأكد شخصية ال WebDAV" ); +$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;"; diff --git a/apps/user_webdavauth/l10n/bg_BG.php b/apps/user_webdavauth/l10n/bg_BG.php index 4f2a7609d73..14e6b280fd2 100644 --- a/apps/user_webdavauth/l10n/bg_BG.php +++ b/apps/user_webdavauth/l10n/bg_BG.php @@ -1,3 +1,5 @@ - "WebDAV идентификация" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index b046e58cee6..e1f8fd9b2ec 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,5 +1,7 @@ - "Autenticació WebDAV", "Address: " => "Adreça:", "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." => "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index e6664d4d7b6..dfeac535eb8 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,5 +1,7 @@ - "Ověření WebDAV", "Address: " => "Adresa:", "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." => "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php index 347267e53c7..2889a1b42a0 100644 --- a/apps/user_webdavauth/l10n/da.php +++ b/apps/user_webdavauth/l10n/da.php @@ -1,5 +1,7 @@ - "WebDAV-godkendelse", "Address: " => "Adresse:", "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." => "Bruger oplysningerne vil blive sendt til denne adresse. Plugin'et registrerer responsen og fortolker HTTP-statuskode 401 og 403 som ugyldige oplysninger, men alle andre besvarelser som gyldige oplysninger." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index f0e7f5dc6ef..3ddc0331334 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,5 +1,7 @@ - "WebDAV Authentifikation", "Address: " => "Addresse: ", "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." => "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index ff55a5d8951..2c31957d251 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,5 +1,7 @@ - "WebDAV-Authentifizierung", "Address: " => "Adresse:", "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." => "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 7150e77b9dc..4a9ab3bafcc 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,5 +1,7 @@ - "Αυθεντικοποίηση μέσω WebDAV ", "Address: " => "Διεύθυνση:", "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." => "Τα διαπιστευτήρια του χρήστη θα σταλούν σε αυτή την διεύθυνση. Αυτό το πρόσθετο ελέγχει την απόκριση και θα ερμηνεύσει τους κωδικούς κατάστασης HTTP 401 και 402 ως μη έγκυρα διαπιστευτήρια και όλες τις άλλες αποκρίσεις ως έγκυρα διαπιστευτήρια." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/eo.php b/apps/user_webdavauth/l10n/eo.php index 0e1fda7c4c2..ddcac32ca1b 100644 --- a/apps/user_webdavauth/l10n/eo.php +++ b/apps/user_webdavauth/l10n/eo.php @@ -1,3 +1,5 @@ - "WebDAV-aŭtentigo" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 262122cf9c3..608b0ad8179 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,3 +1,5 @@ - "Autenticación de WevDAV" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index 262122cf9c3..608b0ad8179 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.php @@ -1,3 +1,5 @@ - "Autenticación de WevDAV" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index e2f359f738e..a8d26e26bbd 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,3 +1,5 @@ - "WebDAV autentimine" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php index 686df69f08a..29794115fcd 100644 --- a/apps/user_webdavauth/l10n/eu.php +++ b/apps/user_webdavauth/l10n/eu.php @@ -1,5 +1,7 @@ - "WebDAV Autentikazioa", "Address: " => "Helbidea:", "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." => "Erabiltzailearen kredentzialak helbide honetara bidaliko dira. Plugin honek erantzuna aztertu eta HTTP 401 eta 403 egoera-kodeak kredentzial ez-egokitzat hartuko ditu, eta beste edozein erantzun, aldiz, kredentzial egokitzat." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/fi_FI.php b/apps/user_webdavauth/l10n/fi_FI.php index ed5085f7f05..a31e09bc72a 100644 --- a/apps/user_webdavauth/l10n/fi_FI.php +++ b/apps/user_webdavauth/l10n/fi_FI.php @@ -1,5 +1,7 @@ - "WebDAV-todennus", "Address: " => "Osoite:", "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." => "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 1957bbaa30b..0130e35c816 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,3 +1,5 @@ - "Authentification WebDAV" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index a989f013021..1d0c38e08f8 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,5 +1,7 @@ - "Autenticación WebDAV", "Address: " => "Enderezo:", "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." => "As credenciais do usuario serán enviadas a este enderezo. Este engadido comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais incorrectas, e todas as outras respostas como credenciais correctas." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/he.php b/apps/user_webdavauth/l10n/he.php index 724acc0e3d2..d11fce81a36 100644 --- a/apps/user_webdavauth/l10n/he.php +++ b/apps/user_webdavauth/l10n/he.php @@ -1,3 +1,5 @@ - "הזדהות מול WebDAV" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/hu_HU.php b/apps/user_webdavauth/l10n/hu_HU.php index 97423ce5fb7..63fc084ff4c 100644 --- a/apps/user_webdavauth/l10n/hu_HU.php +++ b/apps/user_webdavauth/l10n/hu_HU.php @@ -1,3 +1,5 @@ - "WebDAV hitelesítés" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/id.php b/apps/user_webdavauth/l10n/id.php index 22ca0557532..278055ce8c2 100644 --- a/apps/user_webdavauth/l10n/id.php +++ b/apps/user_webdavauth/l10n/id.php @@ -1,3 +1,5 @@ - "Otentikasi WebDAV" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/is.php b/apps/user_webdavauth/l10n/is.php index 10dcfa6e3d3..4fcab076542 100644 --- a/apps/user_webdavauth/l10n/is.php +++ b/apps/user_webdavauth/l10n/is.php @@ -1,3 +1,5 @@ - "WebDAV Auðkenni" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index 0d2b3f7f7c1..7e2003997e5 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,5 +1,7 @@ - "Autenticazione WebDAV", "Address: " => "Indirizzo:", "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." => "Le credenziali dell'utente saranno inviate a questo indirizzo. Questa estensione controlla la risposta e interpreterà i codici di stato HTTP 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 6dbbc8ce856..bab7be008ef 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,5 +1,7 @@ - "WebDAV 認証", "Address: " => "アドレス:", "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." => "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/ka_GE.php b/apps/user_webdavauth/l10n/ka_GE.php index 343cccd64f1..c2aa956072c 100644 --- a/apps/user_webdavauth/l10n/ka_GE.php +++ b/apps/user_webdavauth/l10n/ka_GE.php @@ -1,3 +1,5 @@ - "WebDAV აუთენთიფიკაცია" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index ff1d4cb805e..2d2c4d70e73 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,3 +1,5 @@ - "WebDAV 인증" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/lt_LT.php b/apps/user_webdavauth/l10n/lt_LT.php index 106c1d034cd..90fc2d5ac3e 100644 --- a/apps/user_webdavauth/l10n/lt_LT.php +++ b/apps/user_webdavauth/l10n/lt_LT.php @@ -1,3 +1,5 @@ - "WebDAV autorizavimas" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_webdavauth/l10n/lv.php b/apps/user_webdavauth/l10n/lv.php index 24dbc9c8600..7ce96285881 100644 --- a/apps/user_webdavauth/l10n/lv.php +++ b/apps/user_webdavauth/l10n/lv.php @@ -1,3 +1,5 @@ - "WebDAV autentifikācija" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 68669710f2f..d763789f17a 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,5 +1,7 @@ - "WebDAV authenticatie", "Address: " => "Adres:", "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." => "De ingloggegevens worden opgestuurd naar dit adres. Deze plugin controleert de terugkoppeling en interpreteert de HTTP statuscodes 401 en 403 als invalide inloggegevens, en alle andere terugkoppelingen als valide inloggegevens." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/nn_NO.php b/apps/user_webdavauth/l10n/nn_NO.php index beb8af80bda..519b942f9f5 100644 --- a/apps/user_webdavauth/l10n/nn_NO.php +++ b/apps/user_webdavauth/l10n/nn_NO.php @@ -1,3 +1,5 @@ - "WebDAV-autentisering" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 5dc99eb0c20..9c39be04385 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,5 +1,7 @@ - "Uwierzytelnienie WebDAV", "Address: " => "Adres:", "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." => "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_webdavauth/l10n/pt_BR.php b/apps/user_webdavauth/l10n/pt_BR.php index f5c000ae6e0..6dde16ff4e0 100644 --- a/apps/user_webdavauth/l10n/pt_BR.php +++ b/apps/user_webdavauth/l10n/pt_BR.php @@ -1,5 +1,7 @@ - "Autenticação WebDAV", "Address: " => "Endereço:", "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." => "As credenciais de usuário serão enviadas para este endereço. Este plugin verifica a resposta e interpretará os códigos de status HTTP 401 e 403 como \"credenciais inválidas\", e todas as outras respostas como \"credenciais válidas\"." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index 75bfe976b46..f21d9c0bb9a 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,5 +1,7 @@ - "Autenticação WebDAV", "Address: " => "Endereço:", "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." => "As credenciais do utilizador vão ser enviadas para endereço URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras respostas como válidas." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php index 177f06154fb..5780805a884 100644 --- a/apps/user_webdavauth/l10n/ro.php +++ b/apps/user_webdavauth/l10n/ro.php @@ -1,3 +1,5 @@ - "Autentificare WebDAV" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/user_webdavauth/l10n/ru.php b/apps/user_webdavauth/l10n/ru.php index effd19d0f9a..76c18a37c20 100644 --- a/apps/user_webdavauth/l10n/ru.php +++ b/apps/user_webdavauth/l10n/ru.php @@ -1,5 +1,7 @@ - "Идентификация WebDAV", "Address: " => "Адрес:", "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." => "Учётные данные пользователя будут отправлены на этот адрес. Плагин проверит ответ и будет рассматривать HTTP коды 401 и 403 как неверные учётные данные, при любом другом ответе - учётные данные пользователя верны." ); +$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);"; diff --git a/apps/user_webdavauth/l10n/sk_SK.php b/apps/user_webdavauth/l10n/sk_SK.php index 9f2d8049c12..017f923c2b5 100644 --- a/apps/user_webdavauth/l10n/sk_SK.php +++ b/apps/user_webdavauth/l10n/sk_SK.php @@ -1,3 +1,7 @@ - "WebDAV overenie" + "WebDAV overenie", +"Address: " => "Adresa: ", +"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." => "Používateľské prihlasovacie údaje budú odoslané na túto adresu. Tento plugin skontroluje odpoveď servera a interpretuje návratový kód HTTP 401 a 403 ako neplatné prihlasovacie údaje a akýkoľvek iný ako platné prihlasovacie údaje." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 93e6ce3fc42..f58232b37bd 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -1,3 +1,5 @@ - "Overitev WebDAV" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/user_webdavauth/l10n/sr.php b/apps/user_webdavauth/l10n/sr.php index 07f067c343a..5cb00494033 100644 --- a/apps/user_webdavauth/l10n/sr.php +++ b/apps/user_webdavauth/l10n/sr.php @@ -1,3 +1,5 @@ - "WebDAV провера идентитета" ); +$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);"; diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 6aae1c2e1a8..7595e61efe5 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,5 +1,7 @@ - "WebDAV Autentisering", "Address: " => "Adress: ", "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." => "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/th_TH.php b/apps/user_webdavauth/l10n/th_TH.php index f73058ee42e..102adaca4ab 100644 --- a/apps/user_webdavauth/l10n/th_TH.php +++ b/apps/user_webdavauth/l10n/th_TH.php @@ -1,3 +1,5 @@ - "WebDAV Authentication" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index fc593631785..907fb88b864 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,3 +1,5 @@ - "WebDAV Kimlik doğrulaması" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_webdavauth/l10n/ug.php b/apps/user_webdavauth/l10n/ug.php index 7231d0c5708..8ad7963d49f 100644 --- a/apps/user_webdavauth/l10n/ug.php +++ b/apps/user_webdavauth/l10n/ug.php @@ -1,3 +1,5 @@ - "WebDAV سالاھىيەت دەلىللەش" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php index ade36d140f3..fcde044ec75 100644 --- a/apps/user_webdavauth/l10n/uk.php +++ b/apps/user_webdavauth/l10n/uk.php @@ -1,3 +1,5 @@ - "Аутентифікація WebDAV" ); +$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);"; diff --git a/apps/user_webdavauth/l10n/vi.php b/apps/user_webdavauth/l10n/vi.php index 137362b95f5..1ab4687922f 100644 --- a/apps/user_webdavauth/l10n/vi.php +++ b/apps/user_webdavauth/l10n/vi.php @@ -1,3 +1,5 @@ - "Xác thực WebDAV" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php index f23a692a811..69046042160 100644 --- a/apps/user_webdavauth/l10n/zh_CN.php +++ b/apps/user_webdavauth/l10n/zh_CN.php @@ -1,3 +1,5 @@ - "WebDAV 认证" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/zh_TW.php b/apps/user_webdavauth/l10n/zh_TW.php index 5e8cab26571..304ecdaf4f3 100644 --- a/apps/user_webdavauth/l10n/zh_TW.php +++ b/apps/user_webdavauth/l10n/zh_TW.php @@ -1,3 +1,5 @@ - "WebDAV 認證" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index dc78e44c8d7..ab94e946110 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,4 +1,5 @@ - "Instellings", "Password" => "Wagwoord", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", @@ -30,3 +31,4 @@ "prev" => "vorige", "next" => "volgende" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index b236e63082c..0f84d5da76c 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,4 +1,5 @@ - "نوع التصنيف لم يدخل", "No category to add?" => "ألا توجد فئة للإضافة؟", "This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s", @@ -128,3 +129,4 @@ "next" => "التالي", "Updating ownCloud to version %s, this may take a while." => "جاري تحديث Owncloud الى اصدار %s , قد يستغرق هذا بعض الوقت." ); +$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;"; diff --git a/core/l10n/be.php b/core/l10n/be.php index ecf16e5d6a7..fa6f4e0404a 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -1,6 +1,8 @@ - "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку.", "prev" => "Папярэдняя", "next" => "Далей" ); +$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);"; diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 608f26bc861..57eccb1613c 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Няма избрани категории за изтриване", "Sunday" => "Неделя", "Monday" => "Понеделник", @@ -69,3 +70,4 @@ "prev" => "пред.", "next" => "следващо" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 5c171af567c..eeb141474ad 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", "No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", "Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", @@ -117,3 +118,4 @@ "next" => "পরবর্তী", "Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 6b65cf81f28..4cb1978faf2 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -1,4 +1,6 @@ - "Podijeli", "Add" => "Dodaj" ); +$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);"; diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 497067b09fb..acf32c7dc0f 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,4 +1,5 @@ - "%s ha compartit »%s« amb tu", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", @@ -140,3 +141,4 @@ "next" => "següent", "Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 8974840994a..126de8858cc 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "%s s vámi sdílí »%s«", "Category type not provided." => "Nezadán typ kategorie.", "No category to add?" => "Žádná kategorie k přidání?", @@ -140,3 +141,4 @@ "next" => "následující", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 0f9d9205a60..4b20c05167e 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Math o gategori heb ei ddarparu.", "No category to add?" => "Dim categori i'w ychwanegu?", "This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s", @@ -131,3 +132,4 @@ "next" => "nesaf", "Updating ownCloud to version %s, this may take a while." => "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/core/l10n/da.php b/core/l10n/da.php index 5646acd3dca..ed5a0b67a93 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,4 +1,5 @@ - "%s delte »%s« med sig", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", @@ -136,3 +137,4 @@ "next" => "næste", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de.php b/core/l10n/de.php index fe4b3d5fd8e..a3acaf4ae05 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,4 +1,5 @@ - "%s teilte »%s« mit Ihnen", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", @@ -140,3 +141,4 @@ "next" => "Weiter", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php new file mode 100644 index 00000000000..a6061a2b1e4 --- /dev/null +++ b/core/l10n/de_CH.php @@ -0,0 +1,144 @@ + "%s teilt »%s« mit Ihnen", +"Category type not provided." => "Kategorie nicht angegeben.", +"No category to add?" => "Keine Kategorie hinzuzufügen?", +"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", +"Object type not provided." => "Objekttyp nicht angegeben.", +"%s ID not provided." => "%s ID nicht angegeben.", +"Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", +"No categories selected for deletion." => "Es wurden keine Kategorien zum Löschen ausgewählt.", +"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.", +"Sunday" => "Sonntag", +"Monday" => "Montag", +"Tuesday" => "Dienstag", +"Wednesday" => "Mittwoch", +"Thursday" => "Donnerstag", +"Friday" => "Freitag", +"Saturday" => "Samstag", +"January" => "Januar", +"February" => "Februar", +"March" => "März", +"April" => "April", +"May" => "Mai", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Settings" => "Einstellungen", +"seconds ago" => "Gerade eben", +"1 minute ago" => "Vor 1 Minute", +"{minutes} minutes ago" => "Vor {minutes} Minuten", +"1 hour ago" => "Vor einer Stunde", +"{hours} hours ago" => "Vor {hours} Stunden", +"today" => "Heute", +"yesterday" => "Gestern", +"{days} days ago" => "Vor {days} Tag(en)", +"last month" => "Letzten Monat", +"{months} months ago" => "Vor {months} Monaten", +"months ago" => "Vor Monaten", +"last year" => "Letztes Jahr", +"years ago" => "Vor Jahren", +"Choose" => "Auswählen", +"Cancel" => "Abbrechen", +"Error loading file picker template" => "Es ist ein Fehler in der Vorlage des Datei-Auswählers aufgetreten.", +"Yes" => "Ja", +"No" => "Nein", +"Ok" => "OK", +"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", +"Error" => "Fehler", +"The app name is not specified." => "Der App-Name ist nicht angegeben.", +"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert!", +"Shared" => "Geteilt", +"Share" => "Teilen", +"Error while sharing" => "Fehler beim Teilen", +"Error while unsharing" => "Fehler beim Aufheben der Freigabe", +"Error while changing permissions" => "Fehler bei der Änderung der Rechte", +"Shared with you and the group {group} by {owner}" => "Von {owner} mit Ihnen und der Gruppe {group} geteilt.", +"Shared with you by {owner}" => "Von {owner} mit Ihnen geteilt.", +"Share with" => "Teilen mit", +"Share with link" => "Über einen Link teilen", +"Password protect" => "Passwortschutz", +"Password" => "Passwort", +"Allow Public Upload" => "Öffentliches Hochladen erlauben", +"Email link to person" => "Link per E-Mail verschicken", +"Send" => "Senden", +"Set expiration date" => "Ein Ablaufdatum setzen", +"Expiration date" => "Ablaufdatum", +"Share via email:" => "Mittels einer E-Mail teilen:", +"No people found" => "Niemand gefunden", +"Resharing is not allowed" => "Das Weiterverteilen ist nicht erlaubt", +"Shared in {item} with {user}" => "Freigegeben in {item} von {user}", +"Unshare" => "Freigabe aufheben", +"can edit" => "kann bearbeiten", +"access control" => "Zugriffskontrolle", +"create" => "erstellen", +"update" => "aktualisieren", +"delete" => "löschen", +"share" => "teilen", +"Password protected" => "Passwortgeschützt", +"Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums", +"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", +"Sending ..." => "Sende ...", +"Email sent" => "Email gesendet", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", +"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", +"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", +"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", +"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 ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", +"Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", +"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", +"Username" => "Benutzername", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?", +"Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.", +"Request reset" => "Zurücksetzung anfordern", +"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", +"To login page" => "Zur Login-Seite", +"New password" => "Neues Passwort", +"Reset password" => "Passwort zurücksetzen", +"Personal" => "Persönlich", +"Users" => "Benutzer", +"Apps" => "Apps", +"Admin" => "Administrator", +"Help" => "Hilfe", +"Access forbidden" => "Zugriff verboten", +"Cloud not found" => "Cloud wurde nicht gefunden", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!", +"Edit categories" => "Kategorien ändern", +"Add" => "Hinzufügen", +"Security Warning" => "Sicherheitshinweis", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", +"Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", +"For information how to properly configure your server, please see the documentation." => "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation.", +"Create an admin account" => "Administrator-Konto anlegen", +"Advanced" => "Fortgeschritten", +"Data folder" => "Datenverzeichnis", +"Configure the database" => "Datenbank einrichten", +"will be used" => "wird verwendet", +"Database user" => "Datenbank-Benutzer", +"Database password" => "Datenbank-Passwort", +"Database name" => "Datenbank-Name", +"Database tablespace" => "Datenbank-Tablespace", +"Database host" => "Datenbank-Host", +"Finish setup" => "Installation abschliessen", +"%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", +"Log out" => "Abmelden", +"Automatic logon rejected!" => "Automatische Anmeldung verweigert!", +"If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", +"Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", +"Lost your password?" => "Passwort vergessen?", +"remember" => "merken", +"Log in" => "Einloggen", +"Alternative Logins" => "Alternative Logins", +"Hey there,

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

    Cheers!" => "Hallo,

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

    Viele Grüsse!", +"prev" => "Zurück", +"next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 4242bbb1aae..48d193fb22f 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,4 +1,5 @@ - "%s geteilt »%s« mit Ihnen", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", @@ -140,3 +141,4 @@ "next" => "Weiter", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/el.php b/core/l10n/el.php index 80f14feafe5..71b4fd22174 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,5 @@ - "Ο %s διαμοιράστηκε μαζί σας το »%s«", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", @@ -140,3 +141,4 @@ "next" => "επόμενο", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 482632f3fda..e269c57c3d0 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "Passcode" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index db611139344..7ae5d654269 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,4 +1,5 @@ - "%s kunhavigis “%s” kun vi", "Category type not provided." => "Ne proviziĝis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", @@ -132,3 +133,4 @@ "next" => "jena", "Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es.php b/core/l10n/es.php index 84064e54add..9e25f154a48 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,4 +1,5 @@ - "%s compatido »%s« contigo", "Category type not provided." => "Tipo de categoría no proporcionado.", "No category to add?" => "¿Ninguna categoría para añadir?", @@ -140,3 +141,4 @@ "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 1f8f5a80127..6367ba07f5f 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,5 @@ - "%s compartió \"%s\" con vos", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", @@ -138,3 +139,4 @@ "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 869972a8b83..da9c0d3609a 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,4 +1,5 @@ - "%s jagas sinuga »%s«", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", @@ -140,3 +141,4 @@ "next" => "järgm", "Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 016e96b751f..f3b790ccb58 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -1,4 +1,5 @@ - "%s-ek »%s« zurekin partekatu du", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", @@ -140,3 +141,4 @@ "next" => "hurrengoa", "Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fa.php b/core/l10n/fa.php index c13c6a0e345..0eef756200a 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -1,4 +1,5 @@ - "%s به اشتراک گذاشته شده است »%s« توسط شما", "Category type not provided." => "نوع دسته بندی ارائه نشده است.", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", @@ -138,3 +139,4 @@ "next" => "بعدی", "Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/fi.php b/core/l10n/fi.php index 655d544d393..956ab312337 100644 --- a/core/l10n/fi.php +++ b/core/l10n/fi.php @@ -1,4 +1,6 @@ - "asetukset", "Username" => "Käyttäjätunnus" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 75209d260ef..27eab100870 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "%s jakoi kohteen »%s« kanssasi", "Category type not provided." => "Luokan tyyppiä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", @@ -58,6 +59,7 @@ "Share with link" => "Jaa linkillä", "Password protect" => "Suojaa salasanalla", "Password" => "Salasana", +"Allow Public Upload" => "Salli julkinen lähetys", "Email link to person" => "Lähetä linkki sähköpostitse", "Send" => "Lähetä", "Set expiration date" => "Aseta päättymispäivä", @@ -132,3 +134,4 @@ "next" => "seuraava", "Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 055b6c02e41..b5d8a90e34c 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,4 +1,5 @@ - "%s partagé »%s« avec vous", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", @@ -138,3 +139,4 @@ "next" => "suivant", "Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 02f3e80b9c8..08172a14bc0 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,4 +1,5 @@ - "%s compartiu «%s» con vostede", "Category type not provided." => "Non se indicou o tipo de categoría", "No category to add?" => "Sen categoría que engadir?", @@ -140,3 +141,4 @@ "next" => "seguinte", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/he.php b/core/l10n/he.php index 7624fd8491d..c5fed42db8f 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -1,4 +1,5 @@ - "סוג הקטגוריה לא סופק.", "No category to add?" => "אין קטגוריה להוספה?", "This category already exists: %s" => "הקטגוריה הבאה כבר קיימת: %s", @@ -132,3 +133,4 @@ "next" => "הבא", "Updating ownCloud to version %s, this may take a while." => "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 4285f8ce577..37ac5d8ae0d 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -1,4 +1,5 @@ - "जनवरी", "February" => "फरवरी", "March" => "मार्च", @@ -40,3 +41,4 @@ "prev" => "पिछला", "next" => "अगला" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 3eb556e9f63..856a3019fb1 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -1,4 +1,5 @@ - "Nemate kategorija koje možete dodati?", "No categories selected for deletion." => "Niti jedna kategorija nije odabrana za brisanje.", "Sunday" => "nedelja", @@ -93,3 +94,4 @@ "prev" => "prethodan", "next" => "sljedeći" ); +$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;"; diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 1d83ad54ce7..68c519f7e7d 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "%s megosztotta Önnel ezt: »%s«", "Category type not provided." => "Nincs megadva a kategória típusa.", "No category to add?" => "Nincs hozzáadandó kategória?", @@ -140,3 +141,4 @@ "next" => "következő", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hy.php b/core/l10n/hy.php index de0c725c73b..ac1006dd9ad 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -1,4 +1,5 @@ - "Կիրակի", "Monday" => "Երկուշաբթի", "Tuesday" => "Երեքշաբթի", @@ -19,3 +20,4 @@ "November" => "Նոյեմբեր", "December" => "Դեկտեմբեր" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 8c9b6b88ef3..e02a38d3a09 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,4 +1,5 @@ - "Dominica", "Monday" => "Lunedi", "Tuesday" => "Martedi", @@ -56,3 +57,4 @@ "prev" => "prev", "next" => "prox" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/id.php b/core/l10n/id.php index 716cf39d556..e0bc733f90b 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,4 +1,5 @@ - "Tipe kategori tidak diberikan.", "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", "This category already exists: %s" => "Kategori ini sudah ada: %s", @@ -128,3 +129,4 @@ "next" => "selanjutnya", "Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/is.php b/core/l10n/is.php index 3d3ce41b27a..180e28e974e 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -1,4 +1,5 @@ - "Flokkur ekki gefin", "No category to add?" => "Enginn flokkur til að bæta við?", "Object type not provided." => "Tegund ekki í boði.", @@ -124,3 +125,4 @@ "next" => "næsta", "Updating ownCloud to version %s, this may take a while." => "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/it.php b/core/l10n/it.php index 31ccdb38e66..3fc006b9a5c 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,4 +1,5 @@ - "%s ha condiviso «%s» con te", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", @@ -140,3 +141,4 @@ "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 7c837800b0f..235790d6e52 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "%sが あなたと »%s«を共有しました", "Category type not provided." => "カテゴリタイプは提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", @@ -110,9 +111,11 @@ "Add" => "追加", "Security Warning" => "セキュリティ警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", +"Please update your PHP installation to use %s securely." => "%s を安全に利用する為に インストールされているPHPをアップデートしてください。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。", +"For information how to properly configure your server, please see the documentation." => "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。", "Create an admin account" => "管理者アカウントを作成してください", "Advanced" => "詳細設定", "Data folder" => "データフォルダ", @@ -138,3 +141,4 @@ "next" => "次", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ka.php b/core/l10n/ka.php index b8deeb1e550..5a6814afaf0 100644 --- a/core/l10n/ka.php +++ b/core/l10n/ka.php @@ -1,4 +1,5 @@ - "წამის წინ", "1 minute ago" => "1 წუთის წინ", "1 hour ago" => "1 საათის წინ", @@ -10,3 +11,4 @@ "Admin" => "ადმინისტრატორი", "Help" => "შველა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index f664c9b5ce3..9f0cb93fcd1 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "კატეგორიის ტიპი არ არის განხილული.", "No category to add?" => "არ არის კატეგორია დასამატებლად?", "This category already exists: %s" => "კატეგორია უკვე არსებობს: %s", @@ -128,3 +129,4 @@ "next" => "შემდეგი", "Updating ownCloud to version %s, this may take a while." => "ownCloud–ის განახლება %s–ვერსიამდე. ეს მოითხოვს გარკვეულ დროს." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index e534da85e9e..814dfadb661 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,4 +1,5 @@ - "분류 형식이 제공되지 않았습니다.", "No category to add?" => "추가할 분류가 없습니까?", "This category already exists: %s" => "분류가 이미 존재합니다: %s", @@ -131,3 +132,4 @@ "next" => "다음", "Updating ownCloud to version %s, this may take a while." => "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 1902e450613..02f71d84edf 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "ده‌ستكاری", "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", @@ -22,3 +23,4 @@ "prev" => "پێشتر", "next" => "دواتر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 3cf0ef03dad..ccc019d014a 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,4 +1,5 @@ - "Den/D' %s huet »%s« mat dir gedeelt", "Category type not provided." => "Typ vun der Kategorie net uginn.", "No category to add?" => "Keng Kategorie fir bäizesetzen?", @@ -138,3 +139,4 @@ "next" => "weider", "Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 27744dd7649..d0c4d4d79a3 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Kategorija nenurodyta.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: %s" => "Ši kategorija jau egzistuoja: %s", @@ -132,3 +133,4 @@ "next" => "kitas", "Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 5520d1ff358..1cac8466d0a 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -1,4 +1,5 @@ - "Kategorijas tips nav norādīts.", "No category to add?" => "Nav kategoriju, ko pievienot?", "This category already exists: %s" => "Šāda kategorija jau eksistē — %s", @@ -127,3 +128,4 @@ "next" => "nākamā", "Updating ownCloud to version %s, this may take a while." => "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kādu laiciņu." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/core/l10n/mk.php b/core/l10n/mk.php index c2b7907aa32..3e43b861d60 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -1,4 +1,5 @@ - "Не беше доставен тип на категорија.", "No category to add?" => "Нема категорија да се додаде?", "Object type not provided." => "Не беше доставен тип на објект.", @@ -120,3 +121,4 @@ "prev" => "претходно", "next" => "следно" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 4227a317582..22860c0a277 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Tiada kategori untuk di tambah?", "No categories selected for deletion." => "Tiada kategori dipilih untuk dibuang.", "Sunday" => "Ahad", @@ -64,3 +65,4 @@ "prev" => "sebelum", "next" => "seterus" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index bfdff351849..3a7043e760d 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -1,4 +1,5 @@ - "ထည့်ရန်ခေါင်းစဉ်မရှိဘူးလား", "No categories selected for deletion." => "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွေးထားပါ", "January" => "ဇန်နဝါရီ", @@ -61,3 +62,4 @@ "prev" => "ယခင်", "next" => "နောက်သို့" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 6780a69a22f..fc075fe17a2 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "%s delte »%s« med deg", "No category to add?" => "Ingen kategorier å legge til?", "This category already exists: %s" => "Denne kategorien finnes allerede: %s", @@ -108,3 +109,4 @@ "next" => "neste", "Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til versjon %s, dette kan ta en stund." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c2a8f049dba..76465cd830c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,4 +1,5 @@ - "%s deelde »%s« met jou", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie om toe te voegen?", @@ -138,3 +139,4 @@ "next" => "volgende", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index d1a7bb4f9ed..246429b79f5 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Ingen kategoritype.", "No category to add?" => "Ingen kategori å leggja til?", "This category already exists: %s" => "Denne kategorien finst alt: %s", @@ -131,3 +132,4 @@ "next" => "neste", "Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til utgåve %s, dette kan ta ei stund." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/oc.php b/core/l10n/oc.php index ad400aa650a..3458fa71558 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -1,4 +1,5 @@ - "Pas de categoria d'ajustar ?", "No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", "Sunday" => "Dimenge", @@ -95,3 +96,4 @@ "prev" => "dariièr", "next" => "venent" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 6e5b4327c48..872e621908e 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,4 +1,5 @@ - "%s Współdzielone »%s« z tobą", "Category type not provided." => "Nie podano typu kategorii.", "No category to add?" => "Brak kategorii do dodania?", @@ -140,3 +141,4 @@ "next" => "naprzód", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pl_PL.php b/core/l10n/pl_PL.php index 77febeea3e5..15c376eb954 100644 --- a/core/l10n/pl_PL.php +++ b/core/l10n/pl_PL.php @@ -1,4 +1,6 @@ - "Ustawienia", "Username" => "Nazwa użytkownika" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index f612301a3e8..eb201e7fb63 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "%s compartilhou »%s« com você", "Category type not provided." => "Tipo de categoria não fornecido.", "No category to add?" => "Nenhuma categoria a adicionar?", @@ -140,3 +141,4 @@ "next" => "próximo", "Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index c16e41dce58..47073885ed9 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "%s partilhado »%s« contigo", "Category type not provided." => "Tipo de categoria não fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", @@ -140,3 +141,4 @@ "next" => "seguinte", "Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ro.php b/core/l10n/ro.php index ae7528b5f60..049226cee44 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,4 +1,5 @@ - "%s Partajat »%s« cu tine de", "Category type not provided." => "Tipul de categorie nu a fost specificat.", "No category to add?" => "Nici o categorie de adăugat?", @@ -140,3 +141,4 @@ "next" => "următorul", "Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/core/l10n/ru.php b/core/l10n/ru.php index f9c293de9b8..a87c2267336 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,4 +1,5 @@ - "%s поделился »%s« с вами", "Category type not provided." => "Тип категории не предоставлен", "No category to add?" => "Нет категорий для добавления?", @@ -140,3 +141,4 @@ "next" => "след", "Updating ownCloud to version %s, this may take a while." => "Идёт обновление ownCloud до версии %s. Это может занять некоторое время." ); +$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);"; diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 580df5961f8..ad7c7c73000 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -1,7 +1,9 @@ - "Настройки", "Cancel" => "Отмена", "Error" => "Ошибка", "Share" => "Сделать общим", "Add" => "Добавить" ); +$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);"; diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 21038a93e88..445d77fa732 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -1,4 +1,5 @@ - "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත.", "Sunday" => "ඉරිදා", "Monday" => "සඳුදා", @@ -86,3 +87,4 @@ "prev" => "පෙර", "next" => "ඊළඟ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index a05c6912d26..2f8fd253c34 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "%s s Vami zdieľa »%s«", "Category type not provided." => "Neposkytnutý typ kategórie.", "No category to add?" => "Žiadna kategória pre pridanie?", @@ -110,9 +111,11 @@ "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nie je dostupný žiadny bezpečný generátor náhodných čísel, prosím, povoľte rozšírenie OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátora náhodných čísel môže útočník predpovedať token pre obnovu hesla a prevziať kontrolu nad vaším kontom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje.", +"For information how to properly configure your server, please see the documentation." => "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie.", "Create an admin account" => "Vytvoriť administrátorský účet", "Advanced" => "Rozšírené", "Data folder" => "Priečinok dát", @@ -138,3 +141,4 @@ "next" => "ďalej", "Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sl.php b/core/l10n/sl.php index e7b88316ec3..fc2b4181a75 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,4 +1,5 @@ - "%s je delil »%s« z vami", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ali ni kategorije za dodajanje?", @@ -140,3 +141,4 @@ "next" => "naprej", "Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 0daeccc4814..ad3ad482e6b 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -1,4 +1,5 @@ - "Mungon tipi i kategorisë.", "No category to add?" => "Asnjë kategori për të shtuar?", "This category already exists: %s" => "Kjo kategori tashmë ekziston: %s", @@ -134,3 +135,4 @@ "next" => "para", "Updating ownCloud to version %s, this may take a while." => "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/sr.php b/core/l10n/sr.php index d68012c505f..0ea05f41a72 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,4 +1,5 @@ - "Врста категорије није унет.", "No category to add?" => "Додати још неку категорију?", "Object type not provided." => "Врста објекта није унета.", @@ -120,3 +121,4 @@ "next" => "следеће", "Updating ownCloud to version %s, this may take a while." => "Надоградња ownCloud-а на верзију %s, сачекајте тренутак." ); +$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);"; diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 238843aa176..b8bae55f227 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -1,4 +1,5 @@ - "Nedelja", "Monday" => "Ponedeljak", "Tuesday" => "Utorak", @@ -49,3 +50,4 @@ "prev" => "prethodno", "next" => "sledeće" ); +$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);"; diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 091ae9e2fae..a7157a0bbd6 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,4 +1,5 @@ - "%s delade »%s« med dig", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lägga till?", @@ -140,3 +141,4 @@ "next" => "nästa", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index e593018aaad..a7b71176f3b 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "பிரிவு வகைகள் வழங்கப்படவில்லை", "No category to add?" => "சேர்ப்பதற்கான வகைகள் இல்லையா?", "Object type not provided." => "பொருள் வகை வழங்கப்படவில்லை", @@ -116,3 +117,4 @@ "prev" => "முந்தைய", "next" => "அடுத்து" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/te.php b/core/l10n/te.php index 1469d37296f..a0fe28c5553 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -1,4 +1,5 @@ - "ఈ వర్గం ఇప్పటికే ఉంది: %s", "Sunday" => "ఆదివారం", "Monday" => "సోమవారం", @@ -50,3 +51,4 @@ "Log out" => "నిష్క్రమించు", "Lost your password?" => "మీ సంకేతపదం పోయిందా?" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 392da561bf8..379c479ffd6 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ยังไม่ได้ระบุชนิดของหมวดหมู่", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", "Object type not provided." => "ชนิดของวัตถุยังไม่ได้ถูกระบุ", @@ -124,3 +125,4 @@ "next" => "ถัดไป", "Updating ownCloud to version %s, this may take a while." => "กำลังอัพเดท ownCloud ไปเป็นรุ่น %s, กรุณารอสักครู่" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 063690d0e1f..eb9a0a60f03 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,4 +1,5 @@ - "%s sizinle »%s« paylaşımında bulundu", "Category type not provided." => "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", @@ -138,3 +139,4 @@ "next" => "sonraki", "Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/ug.php b/core/l10n/ug.php index c1bf48e07dd..12d752b8288 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -1,4 +1,5 @@ - "يەكشەنبە", "Monday" => "دۈشەنبە", "Tuesday" => "سەيشەنبە", @@ -46,3 +47,4 @@ "Finish setup" => "تەڭشەك تامام", "Log out" => "تىزىمدىن چىق" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 8491590787a..54fb11d7bf3 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вказано тип категорії.", "No category to add?" => "Відсутні категорії для додавання?", "This category already exists: %s" => "Ця категорія вже існує: %s", @@ -128,3 +129,4 @@ "next" => "наступний", "Updating ownCloud to version %s, this may take a while." => "Оновлення ownCloud до версії %s, це може зайняти деякий час." ); +$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);"; diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index b27033b80e8..7474180ac6d 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -1,4 +1,5 @@ - "شامل کرنے کے لیے کوئی زمرہ نہیں؟", "No categories selected for deletion." => "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب نہیں کیا گیا۔", "January" => "جنوری", @@ -75,3 +76,4 @@ "prev" => "پچھلا", "next" => "اگلا" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 0ea7dd3a642..5ba902c3554 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -1,4 +1,5 @@ - "Kiểu hạng mục không được cung cấp.", "No category to add?" => "Không có danh mục được thêm?", "This category already exists: %s" => "Danh mục này đã tồn tại: %s", @@ -131,3 +132,4 @@ "next" => "Kế tiếp", "Updating ownCloud to version %s, this may take a while." => "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời gian" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index fce45b3c98a..6b389179b7e 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "%s 与您共享了 »%s« ", "Category type not provided." => "未选择分类类型。", "No category to add?" => "没有分类添加了?", @@ -140,3 +141,4 @@ "next" => "前进", "Updating ownCloud to version %s, this may take a while." => "ownCloud正在升级至 %s 版,这可能需要一点时间。" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index ecc97f000b6..3479baefdd0 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "%s 向您分享了 »%s«", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", @@ -138,3 +139,4 @@ "next" => "下一页", "Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 21418fe2eeb..c29d91bc53b 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -1,4 +1,5 @@ - "星期日", "Monday" => "星期一", "Tuesday" => "星期二", @@ -86,3 +87,4 @@ "next" => "下一步", "Updating ownCloud to version %s, this may take a while." => "ownCloud (ver. %s)更新中, 請耐心等侯" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index bc381329b76..a5b4e5a6c3e 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "%s 與您分享了 %s", "Category type not provided." => "未提供分類類型。", "No category to add?" => "沒有可增加的分類?", @@ -140,3 +141,4 @@ "next" => "下一頁", "Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index fef8a84bfe4..6e1898259c6 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index a045850030e..202f964f05e 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "إعدادات" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "اليوم" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 31b933d9197..c3f06d75b7a 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 874f4ded563..871a6b18001 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index ee55b84b6df..c520cd38226 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 33845793c7d..668bdd1a446 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index dea73584f4e..3489c7b8184 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index 8d0154992e9..4f5399874b4 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 97e0522b4b1..b5b1ad52f90 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Настройки" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "днес" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "вчера" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "последният месец" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "последната година" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index a3b4194c6fd..6177f5fbdaf 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 211d08a65e6..2d57c79ed2d 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index b77637b37bc..d232b3b0294 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c400409cb19..7741c170207 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index aa39d255b03..7cbdd75fe6b 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 091c063d0c0..fe30f93c29d 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "আজ" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "গত মাস" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "গত বছর" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index f86bf7d7af0..863cde1d989 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 76ebb7103c5..f029e2534bc 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 7d1d7716e7f..f52d33c0a58 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 88489c1aefb..6e3dfcafa4c 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5fe4d57ad45..56f857f49ae 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index f0ae33236a4..8e55996135c 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 9e2ddf53a6f..638088dfd7b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Configuració" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "avui" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ahir" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "el mes passat" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "l'any passat" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 885d3a66407..076d851e4a8 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 89a390134fc..6c3703bdd77 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,14 +70,14 @@ msgstr "Manca de requisits." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." +"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:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Els usuaris següents no estan configurats per a l'encriptació:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 0acc94e33cc..f20e566e4f2 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 7c7dd8f5c20..bfb24dfb9de 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 3e800ac6559..4f81fa85c21 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index c93521744cd..d8c8b13aa24 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -141,59 +141,59 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Nastavení" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "včera" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "před měsíci" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "minulý rok" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 884be157805..16a65294197 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 7503bf0db72..b477743c562 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 18:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -71,10 +71,10 @@ msgstr "Nesplněné závislosti." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 či novější s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 54d822655f8..4f63d6c7dba 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 18:20+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 8280e1eea43..ccdfe4c30f4 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 18:03+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 4d59267bf10..7f676fdca37 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index b75d8da4b7a..2776cc98d0a 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "heddiw" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ddoe" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "y llynedd" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 82a3b9b7382..0970f6077cb 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 1883952f1c0..0b6627605f1 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index c28b0ab60ff..2df508d685e 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 51945aaba68..bf5e3f365c6 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 1ba76b9843b..99af3545bfa 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index d75738c26d3..e6fec6fa4bb 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -140,59 +140,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "i går" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "sidste måned" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "måneder siden" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "sidste år" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files.po b/l10n/da/files.po index 50449474ba0..19bbe806b54 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index f9c1880e0e0..ad4b78df1c2 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,10 +68,10 @@ msgstr "Manglende betingelser." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Sikker dig venligst at PHP 5.3.3 eller nyere er installeret og at OpenSSL PHP udvidelsen er aktiveret og konfigureret korrekt. Indtil videre er krypterings app'en deaktiveret. " +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 1306af5b495..9e5c80b3041 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c56fa461d3b..9bff35b5b3d 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e9b0f6b6c09..480233b211a 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index aeff36e75a7..4944745fbad 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -144,59 +144,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "Gestern" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index c1f8c4726d4..0d081f1d20f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 2162f985814..f7cc4dd5ef8 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-04 18:40+0000\n" -"Last-Translator: thillux\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,10 +73,10 @@ msgstr "Fehlende Vorraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index e18f6c8e8c8..dd3f5d772bb 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 73764b744ad..548de28a30d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a845eb3066f..8f5ae1cdcbc 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po index 1da0538316b..59daa54beab 100644 --- a/l10n/de_AT/files_encryption.po +++ b/l10n/de_AT/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 4553d2f9585..355a9161948 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -3,13 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arkascha , 2013 +# FlorianScholz , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# Mirodin , 2013 +# SteinQuadrat, 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,207 +27,207 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s teilt »%s« mit Ihnen" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Kategorie nicht angegeben." #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Die nachfolgende Kategorie existiert bereits: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Objekttyp nicht angegeben." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID nicht angegeben." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Fehler beim Entfernen von %s von den Favoriten." #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Sonntag" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Montag" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Dienstag" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Mittwoch" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Donnerstag" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Freitag" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Samstag" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Januar" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Februar" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "März" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "April" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Mai" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Juni" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Juli" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "August" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "September" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Oktober" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "November" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Dezember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" -msgstr "" +msgstr "Einstellungen" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" -msgstr "" +msgstr "Gerade eben" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" -msgstr "" +msgstr "Vor 1 Minute" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" -msgstr "" +msgstr "Vor {minutes} Minuten" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" -msgstr "" +msgstr "Vor einer Stunde" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" -msgstr "" +msgstr "Vor {hours} Stunden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" -msgstr "" +msgstr "Heute" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" -msgstr "" +msgstr "Gestern" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" -msgstr "" +msgstr "Vor {days} Tag(en)" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" -msgstr "" +msgstr "Letzten Monat" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" -msgstr "" +msgstr "Vor {months} Monaten" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" -msgstr "" +msgstr "Vor Monaten" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" -msgstr "" +msgstr "Letztes Jahr" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" -msgstr "" +msgstr "Vor Jahren" #: js/oc-dialogs.js:117 msgid "Choose" -msgstr "" +msgstr "Auswählen" #: js/oc-dialogs.js:122 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Es ist ein Fehler in der Vorlage des Datei-Auswählers aufgetreten." #: js/oc-dialogs.js:164 msgid "Yes" -msgstr "" +msgstr "Ja" #: js/oc-dialogs.js:172 msgid "No" -msgstr "" +msgstr "Nein" #: js/oc-dialogs.js:185 msgid "Ok" -msgstr "" +msgstr "OK" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -228,182 +235,182 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 #: js/share.js:643 js/share.js:655 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Der App-Name ist nicht angegeben." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Die benötigte Datei {file} ist nicht installiert!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Geteilt" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Teilen" #: js/share.js:131 js/share.js:683 msgid "Error while sharing" -msgstr "" +msgstr "Fehler beim Teilen" #: js/share.js:142 msgid "Error while unsharing" -msgstr "" +msgstr "Fehler beim Aufheben der Freigabe" #: js/share.js:149 msgid "Error while changing permissions" -msgstr "" +msgstr "Fehler bei der Änderung der Rechte" #: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." #: js/share.js:160 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Von {owner} mit Ihnen geteilt." #: js/share.js:183 msgid "Share with" -msgstr "" +msgstr "Teilen mit" #: js/share.js:188 msgid "Share with link" -msgstr "" +msgstr "Über einen Link teilen" #: js/share.js:191 msgid "Password protect" -msgstr "" +msgstr "Passwortschutz" #: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" -msgstr "" +msgstr "Passwort" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Öffentliches Hochladen erlauben" #: js/share.js:202 msgid "Email link to person" -msgstr "" +msgstr "Link per E-Mail verschicken" #: js/share.js:203 msgid "Send" -msgstr "" +msgstr "Senden" #: js/share.js:208 msgid "Set expiration date" -msgstr "" +msgstr "Ein Ablaufdatum setzen" #: js/share.js:209 msgid "Expiration date" -msgstr "" +msgstr "Ablaufdatum" #: js/share.js:241 msgid "Share via email:" -msgstr "" +msgstr "Mittels einer E-Mail teilen:" #: js/share.js:243 msgid "No people found" -msgstr "" +msgstr "Niemand gefunden" #: js/share.js:281 msgid "Resharing is not allowed" -msgstr "" +msgstr "Das Weiterverteilen ist nicht erlaubt" #: js/share.js:317 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Freigegeben in {item} von {user}" #: js/share.js:338 msgid "Unshare" -msgstr "" +msgstr "Freigabe aufheben" #: js/share.js:350 msgid "can edit" -msgstr "" +msgstr "kann bearbeiten" #: js/share.js:352 msgid "access control" -msgstr "" +msgstr "Zugriffskontrolle" #: js/share.js:355 msgid "create" -msgstr "" +msgstr "erstellen" #: js/share.js:358 msgid "update" -msgstr "" +msgstr "aktualisieren" #: js/share.js:361 msgid "delete" -msgstr "" +msgstr "löschen" #: js/share.js:364 msgid "share" -msgstr "" +msgstr "teilen" #: js/share.js:398 js/share.js:630 msgid "Password protected" -msgstr "" +msgstr "Passwortgeschützt" #: js/share.js:643 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Fehler beim Entfernen des Ablaufdatums" #: js/share.js:655 msgid "Error setting expiration date" -msgstr "" +msgstr "Fehler beim Setzen des Ablaufdatums" #: js/share.js:670 msgid "Sending ..." -msgstr "" +msgstr "Sende ..." #: js/share.js:681 msgid "Email sent" -msgstr "" +msgstr "Email gesendet" #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." #: lostpassword/controller.php:60 msgid "ownCloud password reset" -msgstr "" +msgstr "ownCloud-Passwort zurücksetzen" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" #: lostpassword/templates/lostpassword.php:4 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 "" +msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" -msgstr "" +msgstr "Benutzername" #: lostpassword/templates/lostpassword.php:22 msgid "" @@ -411,59 +418,59 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" -msgstr "" +msgstr "Zurücksetzung anfordern" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Ihr Passwort wurde zurückgesetzt." #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "Zur Login-Seite" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Neues Passwort" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Passwort zurücksetzen" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Persönlich" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Benutzer" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Apps" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Administrator" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Hilfe" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Zugriff verboten" #: templates/404.php:15 msgid "Cloud not found" -msgstr "" +msgstr "Cloud wurde nicht gefunden" #: templates/altmail.php:2 #, php-format @@ -474,156 +481,156 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Kategorien ändern" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "Hinzufügen" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "" +msgstr "Sicherheitshinweis" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." #: templates/installation.php:41 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." #: templates/installation.php:47 msgid "Create an admin account" -msgstr "" +msgstr "Administrator-Konto anlegen" #: templates/installation.php:65 msgid "Advanced" -msgstr "" +msgstr "Fortgeschritten" #: templates/installation.php:67 msgid "Data folder" -msgstr "" +msgstr "Datenverzeichnis" #: templates/installation.php:77 msgid "Configure the database" -msgstr "" +msgstr "Datenbank einrichten" #: templates/installation.php:82 templates/installation.php:94 #: templates/installation.php:105 templates/installation.php:116 #: templates/installation.php:128 msgid "will be used" -msgstr "" +msgstr "wird verwendet" #: templates/installation.php:140 msgid "Database user" -msgstr "" +msgstr "Datenbank-Benutzer" #: templates/installation.php:147 msgid "Database password" -msgstr "" +msgstr "Datenbank-Passwort" #: templates/installation.php:152 msgid "Database name" -msgstr "" +msgstr "Datenbank-Name" #: templates/installation.php:160 msgid "Database tablespace" -msgstr "" +msgstr "Datenbank-Tablespace" #: templates/installation.php:167 msgid "Database host" -msgstr "" +msgstr "Datenbank-Host" #: templates/installation.php:175 msgid "Finish setup" -msgstr "" +msgstr "Installation abschliessen" #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." #: templates/layout.user.php:66 msgid "Log out" -msgstr "" +msgstr "Abmelden" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatische Anmeldung verweigert!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." #: templates/login.php:34 msgid "Lost your password?" -msgstr "" +msgstr "Passwort vergessen?" #: templates/login.php:39 msgid "remember" -msgstr "" +msgstr "merken" #: templates/login.php:41 msgid "Log in" -msgstr "" +msgstr "Einloggen" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternative Logins" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

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

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

    Viele Grüsse!" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "Zurück" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 5025406758b..4c74f0c849f 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -3,13 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# I Robot , 2013 +# kabum , 2013 +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 +# SteinQuadrat, 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,329 +28,329 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Konnte %s nicht verschieben" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Ungültiges Merkmal" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" #: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." #: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" #: ajax/upload.php:69 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" #: ajax/upload.php:70 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Die Datei konnte nur teilweise übertragen werden" #: ajax/upload.php:71 msgid "No file was uploaded" -msgstr "" +msgstr "Keine Datei konnte übertragen werden." #: ajax/upload.php:72 msgid "Missing a temporary folder" -msgstr "" +msgstr "Kein temporärer Ordner vorhanden" #: ajax/upload.php:73 msgid "Failed to write to disk" -msgstr "" +msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "" +msgstr "Nicht genug Speicher vorhanden." #: ajax/upload.php:123 msgid "Invalid directory." -msgstr "" +msgstr "Ungültiges Verzeichnis." #: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "Dateien" #: js/file-upload.js:11 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ihre Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes gross ist." #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "" +msgstr "Nicht genügend Speicherplatz verfügbar" #: js/file-upload.js:64 msgid "Upload cancelled." -msgstr "" +msgstr "Upload abgebrochen." #: js/file-upload.js:167 js/files.js:266 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." #: js/file-upload.js:233 js/files.js:339 msgid "URL cannot be empty." -msgstr "" +msgstr "Die URL darf nicht leer sein." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Teilen" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "Endgültig löschen" #: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" -msgstr "" +msgstr "Löschen" #: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Umbenennen" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" -msgstr "" +msgstr "Ausstehend" #: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} existiert bereits" #: js/filelist.js:303 js/filelist.js:305 msgid "replace" -msgstr "" +msgstr "ersetzen" #: js/filelist.js:303 msgid "suggest name" -msgstr "" +msgstr "Namen vorschlagen" #: js/filelist.js:303 js/filelist.js:305 msgid "cancel" -msgstr "" +msgstr "abbrechen" #: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "{old_name} wurde ersetzt durch {new_name}" #: js/filelist.js:350 msgid "undo" -msgstr "" +msgstr "rückgängig machen" #: js/filelist.js:375 msgid "perform delete operation" -msgstr "" +msgstr "Löschvorgang ausführen" #: js/filelist.js:458 msgid "1 file uploading" -msgstr "" +msgstr "1 Datei wird hochgeladen" #: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" -msgstr "" +msgstr "Dateien werden hoch geladen" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" #: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ungültiger Verzeichnisname. Die Nutzung von «Shared» ist ownCloud vorbehalten" #: js/files.js:744 templates/index.php:67 msgid "Name" -msgstr "" +msgstr "Name" #: js/files.js:745 templates/index.php:78 msgid "Size" -msgstr "" +msgstr "Grösse" #: js/files.js:746 templates/index.php:80 msgid "Modified" -msgstr "" +msgstr "Geändert" #: js/files.js:763 msgid "1 folder" -msgstr "" +msgstr "1 Ordner" #: js/files.js:765 msgid "{count} folders" -msgstr "" +msgstr "{count} Ordner" #: js/files.js:773 msgid "1 file" -msgstr "" +msgstr "1 Datei" #: js/files.js:775 msgid "{count} files" -msgstr "" +msgstr "{count} Dateien" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Hochladen" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Dateibehandlung" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Maximale Upload-Grösse" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "maximal möglich:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "ZIP-Download aktivieren" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 bedeutet unbegrenzt" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Maximale Grösse für ZIP-Dateien" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Speichern" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Neu" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "Textdatei" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Ordner" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Von einem Link" #: templates/index.php:41 msgid "Deleted files" -msgstr "" +msgstr "Gelöschte Dateien" #: templates/index.php:46 msgid "Cancel upload" -msgstr "" +msgstr "Upload abbrechen" #: templates/index.php:52 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Sie haben hier keine Schreib-Berechtigungen." #: templates/index.php:59 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Alles leer. Laden Sie etwas hoch!" #: templates/index.php:73 msgid "Download" -msgstr "" +msgstr "Herunterladen" #: templates/index.php:85 templates/index.php:86 msgid "Unshare" -msgstr "" +msgstr "Freigabe aufheben" #: templates/index.php:105 msgid "Upload too large" -msgstr "" +msgstr "Der Upload ist zu gross" #: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." #: templates/index.php:112 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:115 msgid "Current scanning" -msgstr "" +msgstr "Scanne" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "Verzeichnis" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "Verzeichnisse" #: templates/part.list.php:85 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:87 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index b4d122cb00a..3f0472c11a8 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/files_encryption.po @@ -3,12 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ako84 , 2013 +# FlorianScholz , 2013 +# JamFX , 2013 +# Mario Siegmann , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -19,39 +24,39 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert." #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert." #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Das Passwort wurde erfolgreich geändert." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." #: files/error.php:7 msgid "" @@ -59,118 +64,118 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Fehlende Voraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." -msgstr "" +msgstr "Speichern..." #: templates/invalid_private_key.php:5 msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Persönliche Einstellungen" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" -msgstr "" +msgstr "Verschlüsselung" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Wiederherstellungschlüsselpasswort" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Aktiviert" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Deaktiviert" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Wiederherstellungsschlüsselpasswort ändern" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Altes Wiederherstellungsschlüsselpasswort" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Neues Wiederherstellungsschlüsselpasswort " #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Passwort ändern" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Altes Login-Passwort" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Momentanes Login-Passwort" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Das Passwort des privaten Schlüssels aktualisieren" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Die Passwort-Wiederherstellung aktivieren:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 2b551874ba5..8d124a52de5 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# FlorianScholz , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 14:02+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,105 +20,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" -msgstr "" +msgstr "Zugriff gestattet" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Fehler beim Einrichten von Dropbox" #: js/dropbox.js:65 js/google.js:86 msgid "Grant access" -msgstr "" +msgstr "Zugriff gestatten" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." #: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Fehler beim Einrichten von Google Drive" #: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." #: lib/config.php:451 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." #: lib/config.php:454 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Externer Speicher" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Ordnername" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Externer Speicher" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "Konfiguration" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "Optionen" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "Zutreffend" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Speicher hinzufügen" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "Nicht definiert" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "Alle Benutzer" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Gruppen" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "Benutzer" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Löschen" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "Externen Speicher für Benutzer aktivieren" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "SSL-Root-Zertifikate" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index e2c77260498..c17931aa32b 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.po @@ -3,13 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# FlorianScholz , 2013 +# JamFX , 2013 +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 14:30+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,62 +22,62 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." #: templates/authenticate.php:7 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/authenticate.php:9 msgid "Submit" -msgstr "" +msgstr "Bestätigen" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Das Element wurde entfernt" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "Der Link ist abgelaufen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." #: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s hat den Ordner %s mit Ihnen geteilt" #: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s hat die Datei %s mit Ihnen geteilt" #: templates/public.php:26 templates/public.php:88 msgid "Download" -msgstr "" +msgstr "Herunterladen" #: templates/public.php:43 templates/public.php:46 msgid "Upload" -msgstr "" +msgstr "Hochladen" #: templates/public.php:56 msgid "Cancel upload" -msgstr "" +msgstr "Upload abbrechen" #: templates/public.php:85 msgid "No preview available for" -msgstr "" +msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index ebd2ca003f3..11659a6602a 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,69 +22,69 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Konnte %s nicht dauerhaft löschen" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Konnte %s nicht wiederherstellen" #: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" -msgstr "" +msgstr "Wiederherstellung ausführen" #: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/trash.js:36 msgid "delete file permanently" -msgstr "" +msgstr "Datei dauerhaft löschen" #: js/trash.js:127 msgid "Delete permanently" -msgstr "" +msgstr "Endgültig löschen" #: js/trash.js:182 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "Name" #: js/trash.js:183 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Gelöscht" #: js/trash.js:192 msgid "1 folder" -msgstr "" +msgstr "1 Ordner" #: js/trash.js:194 msgid "{count} folders" -msgstr "" +msgstr "{count} Ordner" #: js/trash.js:202 msgid "1 file" -msgstr "" +msgstr "1 Datei" #: js/trash.js:204 msgid "{count} files" -msgstr "" +msgstr "{count} Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Wiederherstellen" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "Löschen" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Gelöschte Dateien" diff --git a/l10n/de_CH/files_versions.po b/l10n/de_CH/files_versions.po index 468ea3be06a..d055e276f7a 100644 --- a/l10n/de_CH/files_versions.po +++ b/l10n/de_CH/files_versions.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 14:02+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +22,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Konnte %s nicht zurücksetzen" #: js/versions.js:7 msgid "Versions" -msgstr "" +msgstr "Versionen" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Mehrere Versionen..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Keine anderen Versionen verfügbar" #: js/versions.js:149 msgid "Restore" -msgstr "" +msgstr "Wiederherstellen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 1d2f5677fb4..5fa64da13b9 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -3,13 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 13:40+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,120 +22,120 @@ msgstr "" #: app.php:360 msgid "Help" -msgstr "" +msgstr "Hilfe" #: app.php:373 msgid "Personal" -msgstr "" +msgstr "Persönlich" #: app.php:384 msgid "Settings" -msgstr "" +msgstr "Einstellungen" #: app.php:396 msgid "Users" -msgstr "" +msgstr "Benutzer" #: app.php:409 msgid "Apps" -msgstr "" +msgstr "Apps" #: app.php:417 msgid "Admin" -msgstr "" +msgstr "Administrator" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Konnte \"%s\" nicht aktualisieren." #: defaults.php:35 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Ihrer Kontrolle" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Öffnen von \"%s\" fehlgeschlagen" #: files.php:226 msgid "ZIP download is turned off." -msgstr "" +msgstr "Der ZIP-Download ist deaktiviert." #: files.php:227 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Die Dateien müssen einzeln heruntergeladen werden." #: files.php:228 files.php:256 msgid "Back to Files" -msgstr "" +msgstr "Zurück zu \"Dateien\"" #: files.php:253 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." #: files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." #: helper.php:235 msgid "couldn't be determined" -msgstr "" +msgstr "konnte nicht ermittelt werden" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Die Anwendung ist nicht aktiviert" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Authentifizierungs-Fehler" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dateien" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Text" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Bilder" #: setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s geben Sie den Datenbank-Benutzernamen an." #: setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s geben Sie den Datenbank-Namen an." #: setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL Benutzername und/oder Passwort ungültig" #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -141,7 +144,7 @@ msgstr "" #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB Fehler: \"%s\"" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 #: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 @@ -149,119 +152,119 @@ msgstr "" #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Fehlerhafter Befehl war: \"%s\"" #: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Lösche diesen Benutzer aus MySQL" #: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Lösche diesen Benutzer aus MySQL." #: setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle Benutzername und/oder Passwort ungültig" #: setup/oci.php:173 setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" #: setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Setze Administrator Benutzername." #: setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Setze Administrator Passwort" #: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." #: setup.php:185 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: template/functions.php:80 msgid "seconds ago" -msgstr "" +msgstr "Gerade eben" #: template/functions.php:81 msgid "1 minute ago" -msgstr "" +msgstr "Vor 1 Minute" #: template/functions.php:82 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "Vor %d Minuten" #: template/functions.php:83 msgid "1 hour ago" -msgstr "" +msgstr "Vor einer Stunde" #: template/functions.php:84 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "Vor %d Stunden" #: template/functions.php:85 msgid "today" -msgstr "" +msgstr "Heute" #: template/functions.php:86 msgid "yesterday" -msgstr "" +msgstr "Gestern" #: template/functions.php:87 #, php-format msgid "%d days ago" -msgstr "" +msgstr "Vor %d Tag(en)" #: template/functions.php:88 msgid "last month" -msgstr "" +msgstr "Letzten Monat" #: template/functions.php:89 #, php-format msgid "%d months ago" -msgstr "" +msgstr "Vor %d Monaten" #: template/functions.php:90 msgid "last year" -msgstr "" +msgstr "Letztes Jahr" #: template/functions.php:91 msgid "years ago" -msgstr "" +msgstr "Vor Jahren" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Verursacht durch:" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Die Kategorie «%s» konnte nicht gefunden werden." diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 635f9ddd5dd..776bfefdefd 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -3,13 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arkascha , 2013 +# a.tangemann , 2013 +# FlorianScholz , 2013 +# kabum , 2013 +# Mario Siegmann , 2013 +# Mirodin , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,159 +26,159 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "" +msgstr "Authentifizierungs-Fehler" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Dein Anzeigename ist geändert worden." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Das Ändern des Anzeigenamens ist nicht möglich" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Die Gruppe existiert bereits" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "Die Gruppe konnte nicht angelegt werden" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "" +msgstr "Die Anwendung konnte nicht aktiviert werden." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "E-Mail-Adresse gespeichert" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Ungültige E-Mail-Adresse" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Die Gruppe konnte nicht gelöscht werden" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "Der Benutzer konnte nicht gelöscht werden" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Sprache geändert" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Ungültige Anforderung" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Administratoren können sich nicht selbst aus der admin-Gruppe löschen" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Die App konnte nicht aktualisiert werden." #: js/apps.js:35 msgid "Update to {appversion}" -msgstr "" +msgstr "Update zu {appversion}" #: js/apps.js:41 js/apps.js:81 msgid "Disable" -msgstr "" +msgstr "Deaktivieren" #: js/apps.js:41 js/apps.js:69 js/apps.js:88 msgid "Enable" -msgstr "" +msgstr "Aktivieren" #: js/apps.js:60 msgid "Please wait...." -msgstr "" +msgstr "Bitte warten...." #: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/apps.js:95 msgid "Updating...." -msgstr "" +msgstr "Update..." #: js/apps.js:98 msgid "Error while updating app" -msgstr "" +msgstr "Es ist ein Fehler während des Updates aufgetreten" #: js/apps.js:101 msgid "Updated" -msgstr "" +msgstr "Aktualisiert" #: js/personal.js:118 msgid "Saving..." -msgstr "" +msgstr "Speichern..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "gelöscht" #: js/users.js:47 msgid "undo" -msgstr "" +msgstr "rückgängig machen" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Der Benutzer konnte nicht entfernt werden." #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 msgid "Groups" -msgstr "" +msgstr "Gruppen" #: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" -msgstr "" +msgstr "Gruppenadministrator" #: js/users.js:115 templates/users.php:164 msgid "Delete" -msgstr "" +msgstr "Löschen" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "Gruppe hinzufügen" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "Es muss ein gültiger Benutzername angegeben werden" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "Es muss ein gültiges Passwort angegeben werden" #: personal.php:37 personal.php:38 msgid "__language_name__" -msgstr "" +msgstr "Deutsch (Förmlich: Sie)" #: templates/admin.php:15 msgid "Security Warning" -msgstr "" +msgstr "Sicherheitshinweis" #: templates/admin.php:18 msgid "" @@ -180,36 +187,36 @@ msgid "" "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 "" +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Einrichtungswarnung" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bitte überprüfen Sie die Instalationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Das Modul 'fileinfo' fehlt" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Die Lokalisierung funktioniert nicht" #: templates/admin.php:63 #, php-format @@ -217,11 +224,11 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Keine Internetverbindung" #: templates/admin.php:78 msgid "" @@ -230,110 +237,110 @@ msgid "" "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 "" +msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Teilen" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Share-API aktivieren" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Anwendungen erlauben, die Share-API zu benutzen" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Links erlauben" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Erlaube öffentliches hochladen" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" #: templates/admin.php:160 msgid "Allow resharing" -msgstr "" +msgstr "Erlaube Weiterverteilen" #: templates/admin.php:161 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" #: templates/admin.php:168 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Erlaubt Benutzern, mit jedem zu teilen" #: templates/admin.php:171 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" #: templates/admin.php:178 msgid "Security" -msgstr "" +msgstr "Sicherheit" #: templates/admin.php:191 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS erzwingen" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." #: templates/admin.php:211 msgid "Log" -msgstr "" +msgstr "Log" #: templates/admin.php:212 msgid "Log level" -msgstr "" +msgstr "Log-Level" #: templates/admin.php:243 msgid "More" -msgstr "" +msgstr "Mehr" #: templates/admin.php:244 msgid "Less" -msgstr "" +msgstr "Weniger" #: templates/admin.php:250 templates/personal.php:114 msgid "Version" -msgstr "" +msgstr "Version" #: templates/admin.php:254 templates/personal.php:117 msgid "" @@ -343,174 +350,174 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." #: templates/apps.php:13 msgid "Add your App" -msgstr "" +msgstr "Fügen Sie Ihre Anwendung hinzu" #: templates/apps.php:28 msgid "More Apps" -msgstr "" +msgstr "Weitere Anwendungen" #: templates/apps.php:33 msgid "Select an App" -msgstr "" +msgstr "Wählen Sie eine Anwendung aus" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:41 msgid "-licensed by " -msgstr "" +msgstr "-lizenziert von " #: templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "Update durchführen" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Dokumentation für Benutzer" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Dokumentation für Administratoren" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Online-Dokumentation" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Kommerzieller Support" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Den Einrichtungsassistenten erneut anzeigen" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Sie verwenden %s der verfügbaren %s" #: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "" +msgstr "Ihr Passwort wurde geändert." #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "" +msgstr "Das Passwort konnte nicht geändert werden" #: templates/personal.php:42 msgid "Current password" -msgstr "" +msgstr "Aktuelles Passwort" #: templates/personal.php:44 msgid "New password" -msgstr "" +msgstr "Neues Passwort" #: templates/personal.php:46 msgid "Change password" -msgstr "" +msgstr "Passwort ändern" #: templates/personal.php:58 templates/users.php:85 msgid "Display Name" -msgstr "" +msgstr "Anzeigename" #: templates/personal.php:73 msgid "Email" -msgstr "" +msgstr "E-Mail" #: templates/personal.php:75 msgid "Your email address" -msgstr "" +msgstr "Ihre E-Mail-Adresse" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." #: templates/personal.php:85 templates/personal.php:86 msgid "Language" -msgstr "" +msgstr "Sprache" #: templates/personal.php:98 msgid "Help translate" -msgstr "" +msgstr "Helfen Sie bei der Übersetzung" #: templates/personal.php:104 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:106 #, php-format msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Loginname" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Erstellen" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Admin-Passwort-Wiederherstellung" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" #: templates/users.php:42 msgid "Default Storage" -msgstr "" +msgstr "Standard-Speicher" #: templates/users.php:48 templates/users.php:142 msgid "Unlimited" -msgstr "" +msgstr "Unbegrenzt" #: templates/users.php:66 templates/users.php:157 msgid "Other" -msgstr "" +msgstr "Andere" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Benutzername" #: templates/users.php:91 msgid "Storage" -msgstr "" +msgstr "Speicher" #: templates/users.php:102 msgid "change display name" -msgstr "" +msgstr "Anzeigenamen ändern" #: templates/users.php:106 msgid "set new password" -msgstr "" +msgstr "Neues Passwort setzen" #: templates/users.php:137 msgid "Default" -msgstr "" +msgstr "Standard" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index fbc8386846e..20049b695c2 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -3,13 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# JamFX , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# multimill , 2012 +# traductor , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,331 +26,331 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Löschen der Zuordnung fehlgeschlagen." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Löschen der Serverkonfiguration fehlgeschlagen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach" #: js/settings.js:66 msgid "Deletion failed" -msgstr "" +msgstr "Löschen fehlgeschlagen" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Einstellungen von letzter Konfiguration übernehmen?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Einstellungen beibehalten?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Zuordnungen gelöscht" #: js/settings.js:112 msgid "Success" -msgstr "" +msgstr "Erfolg" #: js/settings.js:117 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "Verbindungstest erfolgreich" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "Verbindungstest fehlgeschlagen" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "Löschung bestätigen" #: templates/settings.php:9 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 "" +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:12 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "Serverkonfiguration" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "Serverkonfiguration hinzufügen" #: templates/settings.php:37 msgid "Host" -msgstr "" +msgstr "Host" #: templates/settings.php:39 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Sie können das Protokoll auslassen, ausser wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" #: templates/settings.php:40 msgid "Base DN" -msgstr "" +msgstr "Basis-DN" #: templates/settings.php:41 msgid "One Base DN per line" -msgstr "" +msgstr "Ein Basis-DN pro Zeile" #: templates/settings.php:42 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" #: templates/settings.php:44 msgid "User DN" -msgstr "" +msgstr "Benutzer-DN" #: templates/settings.php:46 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 "" +msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." #: templates/settings.php:47 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/settings.php:50 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." #: templates/settings.php:51 msgid "User Login Filter" -msgstr "" +msgstr "Benutzer-Login-Filter" #: templates/settings.php:54 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch." #: templates/settings.php:55 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "verwenden Sie %%uid Platzhalter, z. B. «uid=%%uid»" #: templates/settings.php:56 msgid "User List Filter" -msgstr "" +msgstr "Benutzer-Filter-Liste" #: templates/settings.php:59 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Definiert den Filter für die Anfrage der Benutzer." #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "ohne Platzhalter, z.B.: «objectClass=person»" #: templates/settings.php:61 msgid "Group Filter" -msgstr "" +msgstr "Gruppen-Filter" #: templates/settings.php:64 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Definiert den Filter für die Anfrage der Gruppen." #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "ohne Platzhalter, z.B.: «objectClass=posixGroup»" #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "Verbindungseinstellungen" #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "Konfiguration aktiv" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Wenn nicht angehakt, wird diese Konfiguration übersprungen." #: templates/settings.php:72 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Backup Host (Kopie)" #: templates/settings.php:73 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Backup Port" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "Hauptserver deaktivieren" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:76 msgid "Use TLS" -msgstr "" +msgstr "Nutze TLS" #: templates/settings.php:76 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen." #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP-Server (Windows: Gross- und Kleinschreibung bleibt unbeachtet)" #: templates/settings.php:78 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." #: templates/settings.php:78 #, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Nicht empfohlen, nur zu Testzwecken." #: templates/settings.php:79 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Speichere Time-To-Live zwischen" #: templates/settings.php:79 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "in Sekunden. Eine Änderung leert den Cache." #: templates/settings.php:81 msgid "Directory Settings" -msgstr "" +msgstr "Ordnereinstellungen" #: templates/settings.php:83 msgid "User Display Name Field" -msgstr "" +msgstr "Feld für den Anzeigenamen des Benutzers" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." #: templates/settings.php:84 msgid "Base User Tree" -msgstr "" +msgstr "Basis-Benutzerbaum" #: templates/settings.php:84 msgid "One User Base DN per line" -msgstr "" +msgstr "Ein Benutzer Basis-DN pro Zeile" #: templates/settings.php:85 msgid "User Search Attributes" -msgstr "" +msgstr "Benutzersucheigenschaften" #: templates/settings.php:85 templates/settings.php:88 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Optional; ein Attribut pro Zeile" #: templates/settings.php:86 msgid "Group Display Name Field" -msgstr "" +msgstr "Feld für den Anzeigenamen der Gruppe" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." #: templates/settings.php:87 msgid "Base Group Tree" -msgstr "" +msgstr "Basis-Gruppenbaum" #: templates/settings.php:87 msgid "One Group Base DN per line" -msgstr "" +msgstr "Ein Gruppen Basis-DN pro Zeile" #: templates/settings.php:88 msgid "Group Search Attributes" -msgstr "" +msgstr "Gruppensucheigenschaften" #: templates/settings.php:89 msgid "Group-Member association" -msgstr "" +msgstr "Assoziation zwischen Gruppe und Benutzer" #: templates/settings.php:91 msgid "Special Attributes" -msgstr "" +msgstr "Spezielle Eigenschaften" #: templates/settings.php:93 msgid "Quota Field" -msgstr "" +msgstr "Kontingent-Feld" #: templates/settings.php:94 msgid "Quota Default" -msgstr "" +msgstr "Standard-Kontingent" #: templates/settings.php:94 msgid "in bytes" -msgstr "" +msgstr "in Bytes" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "E-Mail-Feld" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" #: templates/settings.php:96 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Interner Benutzername" #: templates/settings.php:102 msgid "" @@ -359,15 +366,15 @@ msgid "" "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 "" +msgstr "Standardmässig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmässig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Interne Eigenschaften des Benutzers:" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "UUID-Erkennung überschreiben" #: templates/settings.php:105 msgid "" @@ -378,15 +385,15 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "UUID-Attribut:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "LDAP-Benutzernamenzuordnung" #: templates/settings.php:108 msgid "" @@ -400,20 +407,20 @@ msgid "" " 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 "" +msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Lösche LDAP-Benutzernamenzuordnung" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Lösche LDAP-Gruppennamenzuordnung" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "Testkonfiguration" #: templates/settings.php:111 msgid "Help" -msgstr "" +msgstr "Hilfe" diff --git a/l10n/de_CH/user_webdavauth.po b/l10n/de_CH/user_webdavauth.po index b7acf171034..ef0fb2e26ca 100644 --- a/l10n/de_CH/user_webdavauth.po +++ b/l10n/de_CH/user_webdavauth.po @@ -3,13 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# multimill , 2012 +# traductor , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 13:40+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +25,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adresse:" #: templates/settings.php:7 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 "" +msgstr "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 74a9b97b5b7..e72058f88c7 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -143,59 +143,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "Gestern" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 91e1c340110..12b0f25a2bd 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 76b2fc9474a..40c198d0808 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 17:00+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,10 +71,10 @@ msgstr "Fehlende Voraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index a4e20c81296..ea20766b17b 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 4d2788b68e1..6a320fe6518 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 09a76572646..e6a37a71fc4 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 279c232cc46..be7ecd8335c 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -144,59 +144,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "σήμερα" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "χτες" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index 560d737eb2f..a4f5443a37c 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 48205a8c2e8..1cdfbf50fec 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,9 +70,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index b344736372f..6c2cab32d42 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 07:40+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 0ac7c75c24d..80d72b31abd 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index cfdde9bef57..fbd59d12749 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index 90fdf44019a..00358fec52b 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/eo/core.po b/l10n/eo/core.po index fb07e265774..cdf3f785d45 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Agordo" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hodiaŭ" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "lastamonate" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "lastajare" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index ac5fb371eb7..43ef1398986 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index ab2a604eb07..cce04b5e023 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 7713bebeb5e..c306eefbc51 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 693963c2826..be9963b2dd9 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 27bae0873ee..f91366c39c9 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 157f80855b7..32c9c17e3b9 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -145,59 +145,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Ajustes" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ayer" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "el mes pasado" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "hace meses" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "el año pasado" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files.po b/l10n/es/files.po index ab79aa69706..8a38275c614 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 19f75204698..1382a2304b6 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -74,10 +74,10 @@ msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index e3ed8dcb356..ccaa90e09d2 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 18:40+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 9f8ce5e7e26..582d3720c7a 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 27fe83e9fa7..1fb1c6df324 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 06175e56f3b..b338b66c650 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Configuración" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "hace {hours} horas" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ayer" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "el mes pasado" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "meses atrás" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "el año pasado" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 8f694afd293..3b8bee30bcf 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index b44892489e0..0640a504551 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,10 +68,10 @@ msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index aa606643312..2a816ac13b9 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 32f1d08a5a5..38ed5cca2a4 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 2dc80662497..21e09ca7c37 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 04f1e2fcfb1..370f8216d28 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Seaded" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "täna" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "eile" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 97ccf238bd6..46ce0fc51d3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 048a22c0203..d1ddbdb93fd 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -69,10 +69,10 @@ msgstr "Nõutavad on puudu." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 577928cf3c8..40067e9eb16 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 71801ca7408..4dc6df1749c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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/user_ldap.po b/l10n/et_EE/user_ldap.po index 9a4e6f7aa13..7604805be09 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 6c08ab0fce1..cd98baf2556 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segundu" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "gaur" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "atzo" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "hilabete" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "joan den urtean" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 3275700171a..dfd984cfbd0 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index cde99dedab2..a714d8fa888 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,10 +70,10 @@ msgstr "Eskakizun batzuk ez dira betetzen." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Ziurtatu PHP 5.3.3 edo berriagoa instalatuta dagoela eta PHPren OpenSSL gehigarria gaituta eta ongi konfiguratuta dagoela. Oraingoz enkriptazio programa ez dago gaituta." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 6a38e375fa3..0c4934d2707 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1bcb0d13906..561de1b7d88 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 2627732cb8d..38995d27908 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 576a489ef39..55f8108cb9d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "امروز" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "دیروز" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "ماه قبل" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "سال قبل" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 1317b3c7247..bbe0225b17c 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index ac77efb7663..6dced246ec6 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,10 +68,10 @@ msgstr "نیازمندی های گمشده" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 82f4d47d036..2f671b8c3ee 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6c0c4eb1e48..c30c709618f 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 138ed1e8fa6..1a547f66dd7 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 72b034badb4..8fea4b8d57f 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Asetukset" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "tänään" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "eilen" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "viime kuussa" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "viime vuonna" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "vuotta sitten" @@ -285,7 +285,7 @@ msgstr "Salasana" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Salli julkinen lähetys" #: js/share.js:202 msgid "Email link to person" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 303c76c8899..d20b20bf087 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 732087d4ef5..5aaf930afb3 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 2b355bfe39f..654d307c870 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 06:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 381015dd21e..4281890e9da 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 358ee7001d7..a935ca4f827 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 838c8b679e4..cc9facab283 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -142,59 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Paramètres" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "aujourd'hui" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "hier" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "le mois dernier" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "l'année dernière" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 4c33dc27a39..f39cec574f3 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 379e785e9e1..a3cea1154a6 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -71,10 +71,10 @@ msgstr "Système minimum requis non respecté." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 7a2616f6dd1..d5d08005c63 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index a17f6cb3300..168a33c9ec9 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 52e8f7e72e8..39d520c2b30 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index db43bc51fb6..44277fdb629 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Axustes" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hoxe" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "onte" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "último mes" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "meses atrás" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "último ano" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a7f5d6d1ce9..b93cbcef2a7 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index a9de5bfcc7f..e939f970b21 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,10 +70,10 @@ msgstr "Non se cumpren os requisitos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 5766c76f565..d1f2e6dd953 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 09:20+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 4003cde32ba..35d5432fae3 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 06ecfaeb682..0202018f3d4 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 815769afeb2..2643cd36c6e 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "הגדרות" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "שניות" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "היום" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "אתמול" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "חודשים" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index 1071366768b..bdb977b5875 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index c7d690a7876..5e2a2f39dbb 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e5ec90f0187..80c6181d839 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 468f47334f6..e4eee2b12b4 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 92412a3acf2..8f989bc1fae 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index da414f326bf..55e08635f21 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 303d4b30b47..3530d6c912a 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -120,7 +120,7 @@ msgstr "साझा करें" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index cea31a0a3eb..ac181cbae06 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index bce2a8c6051..cf42b90f128 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 1cbce126524..66da608edd3 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index dba9ae3b02f..69b89ecdf7d 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 81bdf7ec8fe..5354c2149aa 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Postavke" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "danas" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "jučer" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mjeseci" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 0ac273788ea..4ff002b38ee 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 348a47b40d2..db272d0927c 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index b1d72376aa7..0e918d9686d 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index e3c59e31c93..e8be72648d0 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 724cb66407c..28599c68dc6 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 5584638c0e4..56e2927a7c1 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Beállítások" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "ma" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "tegnap" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "több hónapja" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "tavaly" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 7aced2efc9f..f1b14131054 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 4454bdef40c..c50896b0590 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index d56e22a6e28..ea31ac3f6fc 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:50+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Elküld" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Sajnos úgy tűnik, ez a link már nem működik." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Ennek az oka a következő lehet:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "az állományt időközben eltávolították" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "lejárt a link érvényességi ideje" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "letiltásra került a megosztás" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" #: templates/public.php:15 #, php-format diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 32d8861a33b..3c285437d37 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:30+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} fájl" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "visszaállítva" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 36ab19be996..5fabacbc2ff 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:40+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Az állományok korábbi változatai" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Nem sikerült a(z) {file} állományt erre visszaállítani: {timestamp}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "További változatok..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Az állománynak nincs több változata" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 28ad2b6ab17..e9f13f44d64 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index a3a8d807eb2..0d0100a200e 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index ad6527023c2..e9b9f2afbe8 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 16f83c98df6..68c2afbe4c7 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Configurationes" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 071e4f73194..0a41eed86a1 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index e4f044f7d2d..04eb7d8960c 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 27a04602b6b..32466e7c955 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index b490b5b0547..be9966dae6c 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 8dd885a0628..31b0570076c 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 17b4712d164..e610cd15ca0 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Setelan" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hari ini" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "kemarin" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index b3ba4692e85..ac217d6717d 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index e65b75b2cac..fe3eba2a20d 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 464071170b1..81e0acc646a 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index d3e8034ef13..12086b8b8a3 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index acb31ed65e1..f2e6d29fcce 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index acc203bf921..cc6af8f2f4e 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Stillingar" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sek." -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "í dag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "í gær" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "síðasta ári" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index 3a908a4d0f8..c29690db975 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 441753b069d..2dfaa11e21d 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 6566b26e9db..814df955bf4 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 85dc87ad7d9..6e26f787fdf 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index be713f10c07..344e82af525 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 173d4522e0d..b9a49a7b181 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -140,59 +140,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "oggi" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ieri" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "mese scorso" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mesi fa" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "anno scorso" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index 17724a5967a..e169586aa14 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index d550f72c047..cc862c79a18 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 07:00+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,10 +70,10 @@ msgstr "Requisiti mancanti." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 19d8c8f15d3..0d65d206eff 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 06:00+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 11753861f8b..0f2c1b0c371 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index b71bd28689d..833085b49f3 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 0118ea9fe20..9833951b0c6 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -5,13 +5,14 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +140,59 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "設定" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "昨日" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "一月前" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "月前" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "一年前" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "年前" @@ -498,7 +499,7 @@ msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243) #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "%s を安全に利用する為に インストールされているPHPをアップデートしてください。" #: templates/installation.php:32 msgid "" @@ -523,7 +524,7 @@ msgstr ".htaccess ファイルが動作していないため、おそらくあ msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。" #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 90a702baaa7..9c1333231d8 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index abf03aaf897..4e956587781 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,14 +70,14 @@ msgstr "必要要件が満たされていません。" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" +"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:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "以下のユーザーは、暗号化設定がされていません:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 7ce0742beb9..305eb2256c2 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 09:37+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "送信" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "申し訳ございません。このリンクはもう利用できません。" #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "理由は以下の通りと考えられます:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "アイテムが削除されました" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "リンクの期限が切れています" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "共有が無効になっています" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" #: templates/public.php:15 #, php-format diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 6c8e95fefdf..de488024e0c 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} ファイル" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "復元済" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 3946f049c5a..7291b237c93 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 09:37+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "管理" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "\"%s\" へのアップグレードに失敗しました。" #: defaults.php:35 msgid "web services under your control" @@ -54,7 +54,7 @@ msgstr "管理下のウェブサービス" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "\"%s\" が開けません" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +76,7 @@ msgstr "選択したファイルはZIPファイルの生成には大きすぎま msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。" #: helper.php:235 msgid "couldn't be determined" @@ -260,7 +260,7 @@ msgstr "年前" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "原因は以下:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index d7754992c93..b9a7baa144b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index cdb3a32b0bf..40aad3dd563 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +92,7 @@ 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 "" +msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" #: templates/settings.php:12 msgid "" @@ -223,7 +224,7 @@ msgstr "メインサーバを無効にする" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "レプリカサーバーにのみ接続します。" #: templates/settings.php:76 msgid "Use TLS" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index c2da2724657..581f6b03001 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index a6bb4bf0094..ad8ac29253f 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "დღეს" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 04b3363a7d3..12252138142 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 2b1948e6609..4c7dd5a4457 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 550132c2d1f..e41aedc0bc7 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 9d20dea82bd..c24e0dc7206 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index a0beedfcc2f..a2f98736a22 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index e02a0220c2c..be1a9ea38cd 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f3161b3030c..bce48a1497d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "설정" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "초 전" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "오늘" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "어제" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "지난 달" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "개월 전" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "작년" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 57cf7f3dfa8..79dbe3a284c 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 848bb1530ca..e3428a601e8 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index ca3ff2f09c4..3588a2c90b6 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 43a6a722423..72c04c28e10 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 547021c9105..f583c109bdf 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 2c8de7bc54c..1e7f34752ef 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 978078f33b6..571c319066a 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 7cfa02f06a3..1aeb3d52b0a 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index af7cba23c3d..214868ccf47 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 7285c3da28a..86c93e12fab 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 7d971996c51..2e3b32f82f7 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 77e438a5279..17b02060871 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Astellungen" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 Minutt hir" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "virun {minutes} Minutten" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "virun 1 Stonn" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "virun {hours} Stonnen" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "haut" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "gëschter" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "virun {days} Deeg" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "leschte Mount" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "virun {months} Méint" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "Méint hir" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "Joren hir" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 985b0af5094..7cdc808a449 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index d845e6353de..15dacc9dc19 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 3ec4a563f02..6fe10d536f2 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index b2aaad004c4..5dc543150ee 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index ff308c5e0e5..ef9cdec3bf8 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ca9c5b80294..c4af4073b1d 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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,59 +139,59 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "šiandien" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "vakar" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "praeitais metais" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 5b9fc48cf9d..27057806814 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 22f3b98d907..de2cfd35f39 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 91904a4e8d5..65bd9c97b1e 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 239d969d0fe..5dd33ac3419 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 254827f3a86..c432e2956b7 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2e092f8a986..fc072311c2c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "šodien" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "vakar" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 2906d12760e..1fa692dd981 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index db6b8fd1426..155b94c6e20 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 51ca2b8d25d..b6e95e0a2ca 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 0b9ff593b02..a4ece9b54c1 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 556a293a7c3..92d33e2add1 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index dbcf6c58cd2..79646545291 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Подесувања" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "денеска" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "вчера" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "минатиот месец" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "пред месеци" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "минатата година" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index afc9d5c7815..8d0f82ab972 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index e7309b2e087..466308d7950 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 33c4555dfae..9c165cf0406 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index e11d8a822c7..8745b876368 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index d1883cd979a..c98528b81ec 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index e97dc7732ae..76387876387 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index cd60d15f453..6d08651f9eb 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Tetapan" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index f99439ded33..57d517951ba 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 0508639aeae..8b66830466a 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 3a1caf6884c..b083fa30d71 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 0504ad67a59..ea53a0cd7ea 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 351df3db37f..80b893685cf 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index ee3d3592630..9aedac17d42 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index ea3d97c5cd6..f14bb060383 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "i går" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "forrige måned" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "måneder siden" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "forrige år" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 081415b1b70..df1d934aedf 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 063a792c558..abd3cf2a7a4 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 551d45ae2cf..f7b3957358c 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 4240547121a..e812e0ae327 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 853b63433cf..ae3612c0d98 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 268adc60bd5..a30502e5bbf 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index c515ab3bab4..99be9d2691c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Instellingen" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "vandaag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "gisteren" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "vorige maand" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "vorig jaar" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 5a89e893def..80c72b3ce16 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index d76778bb108..21aadb194f1 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -69,10 +69,10 @@ msgstr "Missende benodigdheden." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index bea50408d88..1ec33cc8a54 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 13:40+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 69ba192c0e4..afacadbe8a3 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index a0aed2817dd..3409fb6860d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index ac20d293001..db50c0e88a9 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "i går" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "førre månad" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "i fjor" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 0639f7d02a7..82081fc9e5c 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 467bce62761..f1295711ff8 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 0cb3e6ce5c7..eea84fc24ae 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b3df4c9a0b7..b451c6fb503 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 5a412930089..f634ba786a4 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 87e172a775e..5a22dd98cc9 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Configuracion" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "uèi" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ièr" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "mes passat" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "meses a" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "an passat" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index b07cc10ec9f..56a56738f8d 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 6d4d0593d97..eba3e13368c 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index c2942ba474d..7b98ed67701 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 37881368c6c..9cdc67cd70f 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index e247b034647..e2d1715e8c7 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index c445879c1d8..f69729c588c 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "dziś" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 252c18bd3c4..18728d0ec33 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 6a5f9f21dcf..83b17801f26 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index eec8378c1bc..659a37b2008 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:37+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 2771def0e4c..ccbbcd75396 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 59a900ea6cf..ba28976a182 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 217fdc591b2..fccecc4f3f5 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -139,59 +139,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Ajustes" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ontem" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "último mês" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "meses atrás" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "último ano" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 3dfe41bd6bd..f2105a7340e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 557bd7d0809..bc02483c4b0 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 23:20+0000\n" -"Last-Translator: wcavassin \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,10 +70,10 @@ msgstr "Requisitos não encontrados." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitada e configurada corretamente. Por enquanto, o aplicativo de criptografia foi desativado." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 8bac48b567d..2141331b272 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 09:50+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a14d1d4ac35..4fefbdfdef3 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 34ce87b54d4..94ddf91fe14 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 9c091b6f800..e11e0f9854c 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -141,59 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Configurações" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ontem" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "ultímo mês" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "meses atrás" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "ano passado" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 96b89f3afa3..161a889dc9a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 7ab5107cbf8..7f8803616a8 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,10 +70,10 @@ msgstr "Faltam alguns requisitos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index ef9f8e11a77..b69a517b10a 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 # moliveira , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-08 11:00+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" @@ -32,27 +33,27 @@ msgstr "Submeter" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Desculpe, mas este link parece não estar a funcionar." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "As razões poderão ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "O item foi removido" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "O link expirou" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "A partilha está desativada" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" #: templates/public.php:15 #, php-format diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index b64a08b08e8..cf52c642066 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 14:30+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 8c05bf433ca..b367d9ee7e4 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 4fbf0d1bc24..b843c86fd17 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 5696b2a9efd..1b3bb503e08 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -141,59 +141,59 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Setări" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urmă" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Acum o oră" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "astăzi" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ieri" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} zile in urmă" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "ultima lună" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "ultimul an" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 2e124639962..2ca363e404c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index db393386ef1..6a275845501 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 0f8aa36ac4a..822b86ba323 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index c26932adf90..1889d0846af 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 678d29975a3..2d78008fc4e 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 8410ab88252..b588107d341 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -144,59 +144,59 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "сегодня" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "вчера" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "в прошлом году" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 74675f578d1..2df55363970 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index a7b8d2431fe..c8c997b80a2 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -72,10 +72,10 @@ msgstr "Требования отсутствуют." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 7dbe2f005c3..f76ec68235d 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 18:00+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 4879d2b0d4a..32a1640562d 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index cdd1f344bff..a2e443c735b 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 3e30001f0b6..596c381bd52 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "අද" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 56596df684b..ea23e234100 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index e44e8bf1218..96c41e6e93e 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index fd0c9a26f0a..249cb24f18a 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 2dd2b455958..1d82e019d90 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index a1f7b850787..fef4fb3d55a 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index 534e069a0aa..796557674c4 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index ee4ed3e4b59..306cd201795 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "včera" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "minulý rok" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "pred rokmi" @@ -497,7 +497,7 @@ msgstr "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s." #: templates/installation.php:32 msgid "" @@ -522,7 +522,7 @@ msgstr "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo sú msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 89af6a30dd4..a54d1221fbf 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 18ec2cbea2a..06be789dd2e 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 18458f84c40..24320a2a13c 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Heslo je chybné. Skúste to znova." #: templates/authenticate.php:7 msgid "Password" @@ -31,27 +32,27 @@ msgstr "Odoslať" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "To je nepríjemné, ale tento odkaz už nie je funkčný." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Možné dôvody:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "položka bola presunutá" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "linke vypršala platnosť" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "zdieľanie je zakázané" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." #: templates/public.php:15 #, php-format diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 95e5b085a19..08b4ef72b6b 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -69,7 +70,7 @@ msgstr "{count} súborov" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "obnovené" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index b480a7c3ce5..afbd44c4156 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19:40+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Verzie" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Zlyhalo obnovenie súboru {file} na verziu {timestamp}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Viac verzií..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Žiadne ďalšie verzie nie sú dostupné" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index aa82aa3ee29..ef108b73c8e 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19:40+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "Administrátor" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Zlyhala aktualizácia \"%s\"." #: defaults.php:35 msgid "web services under your control" @@ -54,7 +54,7 @@ msgstr "webové služby pod Vašou kontrolou" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nemožno otvoriť \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +76,7 @@ msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." #: helper.php:235 msgid "couldn't be determined" @@ -260,7 +260,7 @@ msgstr "pred rokmi" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Príčina:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index b72f378e141..2d3c21ee9a0 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 856ca50856b..cdf1ed0ff8c 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+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" @@ -91,7 +91,7 @@ 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 "" +msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." #: templates/settings.php:12 msgid "" @@ -223,7 +223,7 @@ msgstr "Zakázať hlavný server" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:76 msgid "Use TLS" @@ -246,7 +246,7 @@ msgstr "Vypnúť overovanie SSL certifikátu." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Ak pripojenie pracuje len s touto možnosťou, tak naimportujte SSL certifikát LDAP servera do vášho %s servera." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -270,7 +270,7 @@ msgstr "Pole pre zobrazenia mena používateľa" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena používateľa. " #: templates/settings.php:84 msgid "Base User Tree" @@ -294,7 +294,7 @@ msgstr "Pole pre zobrazenie mena skupiny" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena skupiny." #: templates/settings.php:87 msgid "Base Group Tree" @@ -360,7 +360,7 @@ msgid "" "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 "" +msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -379,7 +379,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +401,7 @@ msgid "" " 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 "" +msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index 4ffa7e8e358..b3e32008582 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19:50+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +25,11 @@ msgstr "WebDAV overenie" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adresa: " #: templates/settings.php:7 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 "" +msgstr "Používateľské prihlasovacie údaje budú odoslané na túto adresu. Tento plugin skontroluje odpoveď servera a interpretuje návratový kód HTTP 401 a 403 ako neplatné prihlasovacie údaje a akýkoľvek iný ako platné prihlasovacie údaje." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 482ea1caf7e..0adf177e229 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "danes" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "včeraj" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "lansko leto" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index d543c3ad123..f021a32a01d 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index ebfcc9ce530..f53916993d2 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,10 +68,10 @@ msgstr "Manjkajoče zahteve" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 69047236339..e565146577a 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 71dd13c7f03..2733327ae90 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index d0c3f5765d9..165251eeea3 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index f8552e44936..fb2fca5fb77 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Parametra" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "sot" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "dje" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 488945798b5..e5db3f2a3c7 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 3aeb9523477..ccb7cbaa926 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 2d0add80fb3..5347573c142 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 975c838ad78..3b0ed93302f 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 2ed99287af3..67a99bb61b2 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index d387b83ccf4..a2835423789 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Поставке" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "данас" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "јуче" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "месеци раније" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "прошле године" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index d85ad49986d..daab5774e63 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 04ed7d5cf20..85eb46828ff 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index fff0dd24278..18293c900b8 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index d4b836e8a1a..d0ab5f6c783 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 31f3cbf8af4..c3dad89049f 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 9fb01330ab9..2f15da5caae 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 2d33f19186f..96edceb6219 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -141,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Inställningar" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "i går" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "förra månaden" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "månader sedan" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "förra året" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b3140d3acc0..abb08f6a306 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index bf274e5e5aa..c9d78f13d39 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:10+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -71,10 +71,10 @@ msgstr "Krav som saknas" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad." +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 2bf5591f7ab..98a9df0dec9 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 916754ad16b..aa682e15aad 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 28b7941b8e7..44eefd82f21 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 2e880b9ae9f..44bd37d47a1 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 0b7c460e287..edc3e7168d1 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "இன்று" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 943c93ab9be..c1d5cd594ed 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 85a61d043e7..c6a45e1e115 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 51ca024f652..83e8e567650 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index e0551bda04e..a70525ca6c9 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index dbf4b8ed81f..12e9c3a0b1b 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index c033af8536e..29dc5eaa0f5 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "ఈరోజు" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index ef08c1f10d3..c2e030fd6a4 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 8dbcbdbcb75..c592c5b12d8 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 26a74815d51..6fdda4a8c9a 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index efbf9806a17..5a519c6cefb 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 6e7b216db1a..bd0c8f48a74 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d462d168d99..b0796ac8e8f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f0fd7ff3b78..88cd6e591db 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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_encryption.pot b/l10n/templates/files_encryption.pot index f45ad5e6b50..3a9064c4327 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,9 +66,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 6fe36ebdfd2..1f22eb0b383 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 50edd0d6b32..c071f7d65d5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 75f82a9b7a5..493571b97c5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 33e5e2fc5d8..92fd83bea19 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 a22fb7cdbf2..4d1067b2f21 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 4f776c51576..4a428b98975 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 afdcab2141f..72356b7d732 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 8270b66c302..2ef2a44d6c5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"POT-Creation-Date: 2013-08-09 07:59-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 2b2eb976a23..e719e85d4a1 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "วันนี้" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index f14b4cc52fc..cb5abcd2e66 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 5408793a7ce..91f26a124e1 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index d3154fed496..c237d68d6db 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 749b6eeee0a..f5076396447 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 2e5cecd0649..4046e14dd9c 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index fe7c9b9d1e2..b94e914f035 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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:293 +#: js/js.js:354 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "bugün" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "dün" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "geçen ay" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "ay önce" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "geçen yıl" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index a1719364372..da9b5f4378a 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index b14691c6099..9909513fdba 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index d3a5dcf51bd..2fb786621bb 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f17b1b51c64..fd3d00a3065 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index a86abc49294..71a2cad9ab6 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 28b886ec0f0..3355bfab96f 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "بۈگۈن" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index d0450008d22..efcb39c0c65 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index aae8deada3b..21c46db204f 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index e8c2f9555ad..39319be3eaf 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 49e5d53ddbe..30a1f8a9f48 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 49daddeb2a5..ded7b0cd7bf 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index e0e8575e753..2d8ce3b7969 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Налаштування" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "сьогодні" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "вчора" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "минулого місяця" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "місяці тому" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "минулого року" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f5c2cd2fb4f..298b776c921 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index ec9f68aed19..e101895485d 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 5bc455917f3..5fbe66a5b70 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Soul Kim \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 7bbf6078110..4daa482adfd 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index fac9e7b6da0..7b824bf2f9d 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 348d910e1fa..d925b8e02d5 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index d51682f1199..b2f06ff4430 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index 52723eb59e0..9bf9cd875cb 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index a3bf807f8dd..d85ab6432fa 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 3eef889f525..921b8e1edf3 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 9b9987041e1..fdfea6be1d5 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 94151459579..987344f485e 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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,59 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "hôm nay" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "tháng trước" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "tháng trước" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "năm trước" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index b274cce4ea9..b4a20ae24c0 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index ed0dda91042..f50c77440eb 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -68,9 +68,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index c727a5b17b5..b69967e63f5 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 55da60efbb8..e0da3b18616 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 8de7ed160e0..abf722d3609 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 18cddc46b8c..edc147a95f2 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -140,59 +140,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "设置" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "秒前" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "昨天" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "上个月" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "月前" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "去年" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 813fda9499a..d78c93cfaf3 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 7fab6e1ae73..3521b46141c 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 92acb527468..861e81116ef 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index be3894e160f..fe15fef6a99 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 2bc58acb884..004d02f98a0 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index b7ec2b43639..e740579b2a0 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "设置" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "秒前" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "昨天" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "上月" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "月前" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "去年" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 42d80f04146..0787ce18edf 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 61e263ad2a5..14f2685c7bd 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -70,9 +70,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index ce6063dce99..cc5197cd7ae 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 4a2a1d76d89..d196a8a788f 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-05 07:52-0400\n" -"PO-Revision-Date: 2013-08-05 11:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 795269be235..97f474b3166 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index ed5fbd0aba6..6198af2acf8 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -137,59 +137,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "設定" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "昨日" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "前一月" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "個月之前" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 40bf4a77a00..bcfe27f804a 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7cba2f446ad..11cc05eff70 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -67,9 +67,9 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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:263 diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index a90458ecce9..f6d1a1f771e 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 63950a02dec..ec3fc03477f 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index d72c1e0b0d9..ab0370f6744 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index e28629b8c22..9ca958e0d1b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "設定" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "昨天" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "上個月" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "幾個月前" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "去年" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index ab8b7e2c5e5..d8d7f94a261 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index d3b22dc0e59..dc9c9cf7a76 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" @@ -69,10 +69,10 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "請確認已安裝 PHP 5.3.3 或更新的版本並啟用 OpenSSL PHP 且正確設定。目前 encryption app 不可使用。" +"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:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 62ef3f9c1b9..ca7ca5130f1 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index c8de92286f6..9e38838ff48 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:10+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 06d5cc0639a..27102dc70b3 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index de32778026f..67353b8fb42 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -1,4 +1,5 @@ - "Hulp", "Personal" => "Persoonlik", "Settings" => "Instellings", @@ -7,3 +8,4 @@ "Admin" => "Admin", "web services under your control" => "webdienste onder jou beheer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 107b27a1fc8..50881cb627b 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -1,4 +1,5 @@ - "المساعدة", "Personal" => "شخصي", "Settings" => "إعدادات", @@ -50,3 +51,4 @@ "years ago" => "سنة مضت", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" ); +$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;"; diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index e23112c8302..4a558426a89 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Помощ", "Personal" => "Лични", "Settings" => "Настройки", @@ -51,3 +52,4 @@ "years ago" => "последните години", "Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index ab1d9b94d0d..3e1340b3689 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", @@ -26,3 +27,4 @@ "last year" => "গত বছর", "years ago" => "বছর পূর্বে" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 14f9edfe34c..a0c7b10e734 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -1,4 +1,5 @@ - "Ajuda", "Personal" => "Personal", "Settings" => "Configuració", @@ -55,3 +56,4 @@ "Caused by:" => "Provocat per:", "Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 4952b2ccddf..354c61f6a12 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nápověda", "Personal" => "Osobní", "Settings" => "Nastavení", @@ -55,3 +56,4 @@ "Caused by:" => "Příčina:", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 27140ba6dbb..7ba8378cb41 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Cymorth", "Personal" => "Personol", "Settings" => "Gosodiadau", @@ -50,3 +51,4 @@ "years ago" => "blwyddyn yn ôl", "Could not find category \"%s\"" => "Methu canfod categori \"%s\"" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 789328a3100..aa5bb74bd31 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -1,4 +1,5 @@ - "Hjælp", "Personal" => "Personligt", "Settings" => "Indstillinger", @@ -55,3 +56,4 @@ "Caused by:" => "Forårsaget af:", "Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de.php b/lib/l10n/de.php index f1c4a1171e2..5dcbea4e022 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -1,4 +1,5 @@ - "Hilfe", "Personal" => "Persönlich", "Settings" => "Einstellungen", @@ -55,3 +56,4 @@ "Caused by:" => "Verursacht durch:", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php new file mode 100644 index 00000000000..2dbf22b9a7d --- /dev/null +++ b/lib/l10n/de_CH.php @@ -0,0 +1,59 @@ + "Hilfe", +"Personal" => "Persönlich", +"Settings" => "Einstellungen", +"Users" => "Benutzer", +"Apps" => "Apps", +"Admin" => "Administrator", +"Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", +"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", +"ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", +"Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", +"Back to Files" => "Zurück zu \"Dateien\"", +"Selected files too large to generate zip file." => "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", +"couldn't be determined" => "konnte nicht ermittelt werden", +"Application is not enabled" => "Die Anwendung ist nicht aktiviert", +"Authentication error" => "Authentifizierungs-Fehler", +"Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", +"Files" => "Dateien", +"Text" => "Text", +"Images" => "Bilder", +"%s enter the database username." => "%s geben Sie den Datenbank-Benutzernamen an.", +"%s enter the database name." => "%s geben Sie den Datenbank-Namen an.", +"%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", +"MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", +"You need to enter either an existing account or the administrator." => "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben.", +"MySQL username and/or password not valid" => "MySQL Benutzername und/oder Passwort ungültig", +"DB Error: \"%s\"" => "DB Fehler: \"%s\"", +"Offending command was: \"%s\"" => "Fehlerhafter Befehl war: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL Benutzer '%s'@'localhost' existiert bereits.", +"Drop this user from MySQL" => "Lösche diesen Benutzer aus MySQL", +"MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", +"Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", +"Oracle connection could not be established" => "Die Oracle-Verbindung konnte nicht aufgebaut werden.", +"Oracle username and/or password not valid" => "Oracle Benutzername und/oder Passwort ungültig", +"Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", +"PostgreSQL username and/or password not valid" => "PostgreSQL Benutzername und/oder Passwort ungültig", +"Set an admin username." => "Setze Administrator Benutzername.", +"Set an admin password." => "Setze Administrator Passwort", +"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.", +"seconds ago" => "Gerade eben", +"1 minute ago" => "Vor 1 Minute", +"%d minutes ago" => "Vor %d Minuten", +"1 hour ago" => "Vor einer Stunde", +"%d hours ago" => "Vor %d Stunden", +"today" => "Heute", +"yesterday" => "Gestern", +"%d days ago" => "Vor %d Tag(en)", +"last month" => "Letzten Monat", +"%d months ago" => "Vor %d Monaten", +"last year" => "Letztes Jahr", +"years ago" => "Vor Jahren", +"Caused by:" => "Verursacht durch:", +"Could not find category \"%s\"" => "Die Kategorie «%s» konnte nicht gefunden werden." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 276e526e2ed..91731585d48 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Hilfe", "Personal" => "Persönlich", "Settings" => "Einstellungen", @@ -55,3 +56,4 @@ "Caused by:" => "Verursacht durch:", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/el.php b/lib/l10n/el.php index de1c6d67937..9989fc967b1 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -1,4 +1,5 @@ - "Βοήθεια", "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", @@ -55,3 +56,4 @@ "Caused by:" => "Προκλήθηκε από:", "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php index 02ff0331e05..a86492d2a93 100644 --- a/lib/l10n/en@pirate.php +++ b/lib/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "web services under your control" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index fd45f30c69b..6ccc2025382 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -1,4 +1,5 @@ - "Helpo", "Personal" => "Persona", "Settings" => "Agordo", @@ -47,3 +48,4 @@ "years ago" => "jaroj antaŭe", "Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 66011e61a0d..e30e4d711e7 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -1,4 +1,5 @@ - "Ayuda", "Personal" => "Personal", "Settings" => "Ajustes", @@ -55,3 +56,4 @@ "Caused by:" => "Causado por:", "Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index da0f6fae84a..3f1c098dbf5 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Ayuda", "Personal" => "Personal", "Settings" => "Configuración", @@ -55,3 +56,4 @@ "Caused by:" => "Provocado por:", "Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index c2cd8ff0389..403f0871c53 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Abiinfo", "Personal" => "Isiklik", "Settings" => "Seaded", @@ -55,3 +56,4 @@ "Caused by:" => "Põhjustaja:", "Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 94b4cfb902e..0d9a8860a09 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -1,4 +1,5 @@ - "Laguntza", "Personal" => "Pertsonala", "Settings" => "Ezarpenak", @@ -55,3 +56,4 @@ "Caused by:" => "Honek eraginda:", "Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 40a778e2126..fa886531bba 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -1,4 +1,5 @@ - "راه‌نما", "Personal" => "شخصی", "Settings" => "تنظیمات", @@ -51,3 +52,4 @@ "years ago" => "سال‌های قبل", "Could not find category \"%s\"" => "دسته بندی %s یافت نشد" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/fi.php b/lib/l10n/fi.php index daaddb25e48..ac1f80a8f73 100644 --- a/lib/l10n/fi.php +++ b/lib/l10n/fi.php @@ -1,3 +1,5 @@ - "asetukset" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 75576c3034d..5892a968d5b 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Ohje", "Personal" => "Henkilökohtainen", "Settings" => "Asetukset", @@ -47,3 +48,4 @@ "years ago" => "vuotta sitten", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 9f30b602696..18fbe55270f 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -1,4 +1,5 @@ - "Aide", "Personal" => "Personnel", "Settings" => "Paramètres", @@ -51,3 +52,4 @@ "years ago" => "il y a plusieurs années", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index f5309d95081..f5cda20e135 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -1,4 +1,5 @@ - "Axuda", "Personal" => "Persoal", "Settings" => "Axustes", @@ -55,3 +56,4 @@ "Caused by:" => "Causado por:", "Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 2e011e342a0..fa597dadea7 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -1,4 +1,5 @@ - "עזרה", "Personal" => "אישי", "Settings" => "הגדרות", @@ -32,3 +33,4 @@ "years ago" => "שנים", "Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index f507993f494..7986b3b6b7f 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -1,7 +1,9 @@ - "सहयोग", "Personal" => "यक्तिगत", "Settings" => "सेटिंग्स", "Users" => "उपयोगकर्ता", "Apps" => "Apps" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php index 41c34d3108c..9c158447729 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -1,4 +1,5 @@ - "Pomoć", "Personal" => "Osobno", "Settings" => "Postavke", @@ -16,3 +17,4 @@ "last year" => "prošlu godinu", "years ago" => "godina" ); +$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;"; diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 7738dcc05c8..422c7266680 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Súgó", "Personal" => "Személyes", "Settings" => "Beállítások", @@ -55,3 +56,4 @@ "Caused by:" => "Okozta:", "Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index e5f6e3ddf58..50ebf20c591 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -1,4 +1,5 @@ - "Adjuta", "Personal" => "Personal", "Settings" => "Configurationes", @@ -9,3 +10,4 @@ "Files" => "Files", "Text" => "Texto" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/id.php b/lib/l10n/id.php index c247651f0c9..0881f5349bc 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -1,4 +1,5 @@ - "Bantuan", "Personal" => "Pribadi", "Settings" => "Setelan", @@ -50,3 +51,4 @@ "years ago" => "beberapa tahun lalu", "Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 0f7a22fd13e..5ccb20882ad 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -1,4 +1,5 @@ - "Hjálp", "Personal" => "Um mig", "Settings" => "Stillingar", @@ -30,3 +31,4 @@ "years ago" => "einhverjum árum", "Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 693f86b6b80..c85ba08f4cd 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -1,4 +1,5 @@ - "Aiuto", "Personal" => "Personale", "Settings" => "Impostazioni", @@ -55,3 +56,4 @@ "Caused by:" => "Causato da:", "Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 36d06d360b9..716db8706f0 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -1,15 +1,19 @@ - "ヘルプ", "Personal" => "個人", "Settings" => "設定", "Users" => "ユーザ", "Apps" => "アプリ", "Admin" => "管理", +"Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", "web services under your control" => "管理下のウェブサービス", +"cannot open \"%s\"" => "\"%s\" が開けません", "ZIP download is turned off." => "ZIPダウンロードは無効です。", "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", "Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。", "couldn't be determined" => "測定できませんでした", "Application is not enabled" => "アプリケーションは無効です", "Authentication error" => "認証エラー", @@ -49,5 +53,7 @@ "%d months ago" => "%d 分前", "last year" => "一年前", "years ago" => "年前", +"Caused by:" => "原因は以下:", "Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka.php b/lib/l10n/ka.php index e5a3e659668..b6e06997638 100644 --- a/lib/l10n/ka.php +++ b/lib/l10n/ka.php @@ -1,4 +1,5 @@ - "შველა", "Personal" => "პერსონა", "Users" => "მომხმარებლები", @@ -13,3 +14,4 @@ "yesterday" => "გუშინ", "%d days ago" => "%d დღის წინ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index c6e77da2dac..5001eee0c27 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "დახმარება", "Personal" => "პირადი", "Settings" => "პარამეტრები", @@ -50,3 +51,4 @@ "years ago" => "წლის წინ", "Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 1f32ebe402a..c163d8c9fa4 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -1,4 +1,5 @@ - "도움말", "Personal" => "개인", "Settings" => "설정", @@ -40,3 +41,4 @@ "years ago" => "년 전", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 6d7461a1685..05959b89cff 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "یارمەتی", "Settings" => "ده‌ستكاری", "Users" => "به‌كارهێنه‌ر", @@ -6,3 +7,4 @@ "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 867b0a37409..11552bcce82 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -1,4 +1,5 @@ - "Hëllef", "Personal" => "Perséinlech", "Settings" => "Astellungen", @@ -18,3 +19,4 @@ "last year" => "Läscht Joer", "years ago" => "Joren hier" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 5e3a0482033..e35f3bee16b 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Pagalba", "Personal" => "Asmeniniai", "Settings" => "Nustatymai", @@ -29,3 +30,4 @@ "last year" => "praeitais metais", "years ago" => "prieš metus" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 662f4d5b245..0dfaf6b6780 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -1,4 +1,5 @@ - "Palīdzība", "Personal" => "Personīgi", "Settings" => "Iestatījumi", @@ -50,3 +51,4 @@ "years ago" => "gadus atpakaļ", "Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 30fa9ab73c1..eeece35ea6d 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -1,4 +1,5 @@ - "Помош", "Personal" => "Лично", "Settings" => "Подесувања", @@ -30,3 +31,4 @@ "years ago" => "пред години", "Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index a2930597971..5de0eb95991 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Bantuan", "Personal" => "Peribadi", "Settings" => "Tetapan", @@ -10,3 +11,4 @@ "Files" => "Fail-fail", "Text" => "Teks" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index f214a1ed794..731aa33d576 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -1,4 +1,5 @@ - "အကူအညီ", "Users" => "သုံးစွဲသူ", "Apps" => "Apps", @@ -27,3 +28,4 @@ "years ago" => "နှစ် အရင်က", "Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index ab2d4f91920..42a43bfd98f 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Hjelp", "Personal" => "Personlig", "Settings" => "Innstillinger", @@ -32,3 +33,4 @@ "years ago" => "år siden", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 0a221b11f00..8983aa81bfd 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -1,4 +1,5 @@ - "Help", "Personal" => "Persoonlijk", "Settings" => "Instellingen", @@ -55,3 +56,4 @@ "Caused by:" => "Gekomen door:", "Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index c1739398109..3cbd0159bc2 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Hjelp", "Personal" => "Personleg", "Settings" => "Innstillingar", @@ -20,3 +21,4 @@ "last year" => "i fjor", "years ago" => "år sidan" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index a72da90790a..6f0645bf77a 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -1,4 +1,5 @@ - "Ajuda", "Personal" => "Personal", "Settings" => "Configuracion", @@ -21,3 +22,4 @@ "last year" => "an passat", "years ago" => "ans a" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index d06d5ba8a3e..bd24614751a 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -1,4 +1,5 @@ - "Pomoc", "Personal" => "Osobiste", "Settings" => "Ustawienia", @@ -55,3 +56,4 @@ "Caused by:" => "Spowodowane przez:", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pl_PL.php b/lib/l10n/pl_PL.php index 67cf0a33259..5494e3dab25 100644 --- a/lib/l10n/pl_PL.php +++ b/lib/l10n/pl_PL.php @@ -1,3 +1,5 @@ - "Ustawienia" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 23385e8c7d1..cae6107b9e8 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Ajuda", "Personal" => "Pessoal", "Settings" => "Ajustes", @@ -55,3 +56,4 @@ "Caused by:" => "Causados ​​por:", "Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 96cb5f65f56..cb8bc99096c 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -55,3 +56,4 @@ "Caused by:" => "Causado por:", "Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 5a34e9571e5..006e97ed865 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -1,4 +1,5 @@ - "Ajutor", "Personal" => "Personal", "Settings" => "Setări", @@ -33,3 +34,4 @@ "years ago" => "ani în urmă", "Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index d9d1f5c53fe..544f9c9b809 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -1,4 +1,5 @@ - "Помощь", "Personal" => "Личное", "Settings" => "Конфигурация", @@ -55,3 +56,4 @@ "Caused by:" => "Вызвано:", "Could not find category \"%s\"" => "Категория \"%s\" не найдена" ); +$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);"; diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php index 7639a3cc97e..1761c1ebf3b 100644 --- a/lib/l10n/ru_RU.php +++ b/lib/l10n/ru_RU.php @@ -1,4 +1,6 @@ - "Настройки", "Text" => "Текст" ); +$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);"; diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 49ded7026e0..36e7b19ba97 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -1,4 +1,5 @@ - "උදව්", "Personal" => "පෞද්ගලික", "Settings" => "සිටුවම්", @@ -26,3 +27,4 @@ "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 64ad1e540f3..93699439ee2 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -1,15 +1,19 @@ - "Pomoc", "Personal" => "Osobné", "Settings" => "Nastavenia", "Users" => "Používatelia", "Apps" => "Aplikácie", "Admin" => "Administrátor", +"Failed to upgrade \"%s\"." => "Zlyhala aktualizácia \"%s\".", "web services under your control" => "webové služby pod Vašou kontrolou", +"cannot open \"%s\"" => "nemožno otvoriť \"%s\"", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", "Selected files too large to generate zip file." => "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu.", "couldn't be determined" => "nedá sa zistiť", "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", @@ -49,5 +53,7 @@ "%d months ago" => "Pred %d mesiacmi.", "last year" => "minulý rok", "years ago" => "pred rokmi", +"Caused by:" => "Príčina:", "Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index a5b4decd61a..bffc6d5929b 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -1,4 +1,5 @@ - "Pomoč", "Personal" => "Osebno", "Settings" => "Nastavitve", @@ -51,3 +52,4 @@ "years ago" => "let nazaj", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index df5e2a31743..9a332bc671e 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -1,4 +1,5 @@ - "Ndihmë", "Personal" => "Personale", "Settings" => "Parametra", @@ -50,3 +51,4 @@ "years ago" => "vite më parë", "Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 71d627e7890..a42df978b4d 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -1,4 +1,5 @@ - "Помоћ", "Personal" => "Лично", "Settings" => "Поставке", @@ -33,3 +34,4 @@ "years ago" => "година раније", "Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." ); +$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);"; diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php index 13cedc83279..a0c46c2487b 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -1,4 +1,5 @@ - "Pomoć", "Personal" => "Lično", "Settings" => "Podešavanja", @@ -9,3 +10,4 @@ "Files" => "Fajlovi", "Text" => "Tekst" ); +$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);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 0e2e806b4f6..72e2d18654a 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -1,4 +1,5 @@ - "Hjälp", "Personal" => "Personligt", "Settings" => "Inställningar", @@ -55,3 +56,4 @@ "Caused by:" => "Orsakad av:", "Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php index 9193f6f1d2f..88b9de5f7d1 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "உதவி", "Personal" => "தனிப்பட்ட", "Settings" => "அமைப்புகள்", @@ -30,3 +31,4 @@ "years ago" => "வருடங்களுக்கு முன்", "Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/te.php b/lib/l10n/te.php index 87c73d790e2..e7d9d921e5e 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -1,4 +1,5 @@ - "సహాయం", "Settings" => "అమరికలు", "Users" => "వాడుకరులు", @@ -11,3 +12,4 @@ "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 4ec6ef55f4e..25c2d8f1f2a 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ช่วยเหลือ", "Personal" => "ส่วนตัว", "Settings" => "ตั้งค่า", @@ -31,3 +32,4 @@ "years ago" => "ปี ที่ผ่านมา", "Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 6325ad9886a..233b99e6373 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,4 +1,5 @@ - "Yardım", "Personal" => "Kişisel", "Settings" => "Ayarlar", @@ -51,3 +52,4 @@ "years ago" => "yıl önce", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index 62d91616c1d..cf460cd3024 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -1,4 +1,5 @@ - "ياردەم", "Personal" => "شەخسىي", "Settings" => "تەڭشەكلەر", @@ -17,3 +18,4 @@ "%d days ago" => "%d كۈن ئىلگىرى", "%d months ago" => "%d ئاي ئىلگىرى" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 7ff7829e1a2..c52aa5dfc77 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -1,4 +1,5 @@ - "Допомога", "Personal" => "Особисте", "Settings" => "Налаштування", @@ -50,3 +51,4 @@ "years ago" => "роки тому", "Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" ); +$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);"; diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 21e711c6df5..57f77d46059 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -1,4 +1,5 @@ - "مدد", "Personal" => "ذاتی", "Settings" => "سیٹینگز", @@ -7,3 +8,4 @@ "Admin" => "ایڈمن", "web services under your control" => "آپ کے اختیار میں ویب سروسیز" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index f2a7d669b8f..c3ec50b41f9 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -1,4 +1,5 @@ - "Giúp đỡ", "Personal" => "Cá nhân", "Settings" => "Cài đặt", @@ -31,3 +32,4 @@ "years ago" => "năm trước", "Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 4780a69eb34..9d7237bd198 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "帮助", "Personal" => "私人", "Settings" => "设置", @@ -29,3 +30,4 @@ "last year" => "去年", "years ago" => "年前" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 7630f885c4a..4469f0fb1e4 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "帮助", "Personal" => "个人", "Settings" => "设置", @@ -51,3 +52,4 @@ "years ago" => "年前", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index cfa33ec36f5..f5fc48366ff 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -1,4 +1,5 @@ - "幫助", "Personal" => "個人", "Settings" => "設定", @@ -11,3 +12,4 @@ "yesterday" => "昨日", "last month" => "前一月" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index afd196f7c82..81b66b93296 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "說明", "Personal" => "個人", "Settings" => "設定", @@ -51,3 +52,4 @@ "years ago" => "幾年前", "Could not find category \"%s\"" => "找不到分類:\"%s\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/af_ZA.php b/settings/l10n/af_ZA.php index f89e0062928..b6c50252667 100644 --- a/settings/l10n/af_ZA.php +++ b/settings/l10n/af_ZA.php @@ -1,5 +1,7 @@ - "Wagwoord", "New password" => "Nuwe wagwoord", "Username" => "Gebruikersnaam" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 74580ea2030..423c9cec666 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,4 +1,5 @@ - "فشل تحميل القائمة من الآب ستور", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Unable to change display name" => "تعذر تغيير اسم الحساب", @@ -100,3 +101,4 @@ "set new password" => "اعداد كلمة مرور جديدة", "Default" => "افتراضي" ); +$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;"; diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 72b8accef12..d7b892bcca7 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Възникна проблем с идентификацията", "Group already exists" => "Групата вече съществува", "Unable to add group" => "Невъзможно добавяне на група", @@ -60,3 +61,4 @@ "Storage" => "Хранилище", "Default" => "По подразбиране" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index c5116af7463..c679fcef8a2 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", @@ -61,3 +62,4 @@ "Storage" => "সংরক্ষণাগার", "Default" => "পূর্বনির্ধারিত" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/bs.php b/settings/l10n/bs.php index 774f081673d..708e045adeb 100644 --- a/settings/l10n/bs.php +++ b/settings/l10n/bs.php @@ -1,3 +1,5 @@ - "Spašavam..." ); +$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);"; diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index fe29bdda13c..52dec3a892e 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", "Your display name has been changed." => "El nom a mostrar ha canviat.", @@ -114,3 +115,4 @@ "set new password" => "estableix nova contrasenya", "Default" => "Per defecte" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 350a77a09f0..68c2f42c529 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", "Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.", @@ -114,3 +115,4 @@ "set new password" => "nastavit nové heslo", "Default" => "Výchozí" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 2dcfd502c4e..b18ace86698 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", @@ -14,3 +15,4 @@ "Other" => "Arall", "Username" => "Enw defnyddiwr" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/settings/l10n/da.php b/settings/l10n/da.php index b614ece4a0a..a36c6bb61fd 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", "Your display name has been changed." => "Dit skærmnavn blev ændret.", @@ -114,3 +115,4 @@ "set new password" => "skift kodeord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de.php b/settings/l10n/de.php index dbe2f0c96db..a195858773d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,4 +1,5 @@ - "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", "Your display name has been changed." => "Dein Anzeigename ist geändert worden.", @@ -114,3 +115,4 @@ "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php new file mode 100644 index 00000000000..d874eafd3bf --- /dev/null +++ b/settings/l10n/de_CH.php @@ -0,0 +1,118 @@ + "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Authentifizierungs-Fehler", +"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", +"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", +"Group already exists" => "Die Gruppe existiert bereits", +"Unable to add group" => "Die Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", +"Email saved" => "E-Mail-Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail-Adresse", +"Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", +"Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", +"Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anforderung", +"Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", +"Couldn't update app." => "Die App konnte nicht aktualisiert werden.", +"Update to {appversion}" => "Update zu {appversion}", +"Disable" => "Deaktivieren", +"Enable" => "Aktivieren", +"Please wait...." => "Bitte warten....", +"Error" => "Fehler", +"Updating...." => "Update...", +"Error while updating app" => "Es ist ein Fehler während des Updates aufgetreten", +"Updated" => "Aktualisiert", +"Saving..." => "Speichern...", +"deleted" => "gelöscht", +"undo" => "rückgängig machen", +"Unable to remove user" => "Der Benutzer konnte nicht entfernt werden.", +"Groups" => "Gruppen", +"Group Admin" => "Gruppenadministrator", +"Delete" => "Löschen", +"add group" => "Gruppe hinzufügen", +"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", +"Error creating user" => "Beim Erstellen des Benutzers ist ein Fehler aufgetreten", +"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"__language_name__" => "Deutsch (Förmlich: Sie)", +"Security Warning" => "Sicherheitshinweis", +"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." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers.", +"Setup Warning" => "Einrichtungswarnung", +"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 überprüfen Sie die Instalationsanleitungen.", +"Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", +"Locale not working" => "Die Lokalisierung funktioniert nicht", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", +"Internet connection not working" => "Keine Internetverbindung", +"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." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", +"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.", +"Sharing" => "Teilen", +"Enable Share API" => "Share-API aktivieren", +"Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", +"Allow public uploads" => "Erlaube öffentliches hochladen", +"Allow users to enable others to upload into their publicly shared folders" => "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen", +"Allow resharing" => "Erlaube Weiterverteilen", +"Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", +"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", +"Security" => "Sicherheit", +"Enforce HTTPS" => "HTTPS erzwingen", +"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren.", +"Log" => "Log", +"Log level" => "Log-Level", +"More" => "Mehr", +"Less" => "Weniger", +"Version" => "Version", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", +"Add your App" => "Fügen Sie Ihre Anwendung hinzu", +"More Apps" => "Weitere Anwendungen", +"Select an App" => "Wählen Sie eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"-licensed by " => "-lizenziert von ", +"Update" => "Update durchführen", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", +"Get the apps to sync your files" => "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", +"Show First Run Wizard again" => "Den Einrichtungsassistenten erneut anzeigen", +"You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", +"Password" => "Passwort", +"Your password was changed" => "Ihr Passwort wurde geändert.", +"Unable to change your password" => "Das Passwort konnte nicht geändert werden", +"Current password" => "Aktuelles Passwort", +"New password" => "Neues Passwort", +"Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", +"Email" => "E-Mail", +"Your email address" => "Ihre E-Mail-Adresse", +"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", +"Language" => "Sprache", +"Help translate" => "Helfen Sie bei der Übersetzung", +"WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", +"Login Name" => "Loginname", +"Create" => "Erstellen", +"Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", +"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", +"Default Storage" => "Standard-Speicher", +"Unlimited" => "Unbegrenzt", +"Other" => "Andere", +"Username" => "Benutzername", +"Storage" => "Speicher", +"change display name" => "Anzeigenamen ändern", +"set new password" => "Neues Passwort setzen", +"Default" => "Standard" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8558b8ba43b..3faa8858e8e 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", "Your display name has been changed." => "Dein Anzeigename ist geändert worden.", @@ -114,3 +115,4 @@ "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 3ea16f8c7d9..194e8a61d3d 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,4 +1,5 @@ - "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", "Your display name has been changed." => "Το όνομα σας στην οθόνη άλλαξε. ", @@ -104,3 +105,4 @@ "set new password" => "επιλογή νέου κωδικού", "Default" => "Προκαθορισμένο" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/en@pirate.php b/settings/l10n/en@pirate.php index 482632f3fda..e269c57c3d0 100644 --- a/settings/l10n/en@pirate.php +++ b/settings/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "Passcode" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 04f3567e58d..7cda89f4965 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,4 +1,5 @@ - "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", "Group already exists" => "La grupo jam ekzistas", @@ -75,3 +76,4 @@ "Storage" => "Konservejo", "Default" => "Defaŭlta" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 6975103a488..ad8b198e1ad 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,4 +1,5 @@ - "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your display name has been changed." => "Su nombre fue cambiado.", @@ -114,3 +115,4 @@ "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 2ea9138e2c8..fad7e52b91c 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", "Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", @@ -106,3 +107,4 @@ "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 58e1a5ecce8..0f0947fa5b8 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,4 +1,5 @@ - "App Store'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", "Your display name has been changed." => "Sinu näidatav nimi on muudetud.", @@ -114,3 +115,4 @@ "set new password" => "määra uus parool", "Default" => "Vaikeväärtus" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index aaec604d756..4b6c13127b7 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin izan da App Dendatik zerrenda kargatu", "Authentication error" => "Autentifikazio errorea", "Your display name has been changed." => "Zure bistaratze izena aldatu egin da.", @@ -111,3 +112,4 @@ "set new password" => "ezarri pasahitz berria", "Default" => "Lehenetsia" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index fbb6a63f074..5d478bc4939 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,4 +1,5 @@ - "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", "Your display name has been changed." => "نام نمایش شما تغییر یافته است.", @@ -104,3 +105,4 @@ "set new password" => "تنظیم کلمه عبور جدید", "Default" => "پیش فرض" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 4c5fc76fa83..61d0a51bf92 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Tunnistautumisvirhe", "Your display name has been changed." => "Näyttönimesi on muutettu.", @@ -97,3 +98,4 @@ "set new password" => "aseta uusi salasana", "Default" => "Oletus" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 2c7e9d1cdbf..1c64b01f566 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", "Your display name has been changed." => "Votre nom d'affichage a bien été modifié.", @@ -104,3 +105,4 @@ "set new password" => "Changer le mot de passe", "Default" => "Défaut" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index c0a42a38805..85e40f07638 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel cargar a lista desde a App Store", "Authentication error" => "Produciuse un erro de autenticación", "Your display name has been changed." => "O seu nome visíbel foi cambiado", @@ -114,3 +115,4 @@ "set new password" => "estabelecer un novo contrasinal", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 83f7fd8a5fa..b82e5a9b3e4 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן לטעון רשימה מה־App Store", "Authentication error" => "שגיאת הזדהות", "Your display name has been changed." => "שם התצוגה שלך הוחלף.", @@ -100,3 +101,4 @@ "set new password" => "הגדרת ססמה חדשה", "Default" => "בררת מחדל" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index eb3fcc251f4..094a9dba298 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,7 +1,9 @@ - "त्रुटि", "Update" => "अद्यतन", "Password" => "पासवर्ड", "New password" => "नया पासवर्ड", "Username" => "प्रयोक्ता का नाम" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 4bfbc2d3d50..4a225ed4b8a 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,4 +1,5 @@ - "Nemogićnost učitavanja liste sa Apps Stora", "Authentication error" => "Greška kod autorizacije", "Email saved" => "Email spremljen", @@ -35,3 +36,4 @@ "Other" => "ostali", "Username" => "Korisničko ime" ); +$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;"; diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 8e29c6c779a..cfc6eff5638 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Nem tölthető le a lista az App Store-ból", "Authentication error" => "Azonosítási hiba", "Your display name has been changed." => "Az Ön megjelenítési neve megváltozott.", @@ -114,3 +115,4 @@ "set new password" => "új jelszó beállítása", "Default" => "Alapértelmezett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hy.php b/settings/l10n/hy.php index 9a9e46085ef..d73cb37a765 100644 --- a/settings/l10n/hy.php +++ b/settings/l10n/hy.php @@ -1,4 +1,6 @@ - "Ջնջել", "Other" => "Այլ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index d6d1c9eb86e..3f61ff8eefe 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,4 +1,5 @@ - "Linguage cambiate", "Invalid request" => "Requesta invalide", "Error" => "Error", @@ -24,3 +25,4 @@ "Other" => "Altere", "Username" => "Nomine de usator" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/id.php b/settings/l10n/id.php index f832a85fbd4..6c3ad8b3e77 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat memuat daftar dari App Store", "Authentication error" => "Galat saat autentikasi", "Unable to change display name" => "Tidak dapat mengubah nama tampilan", @@ -100,3 +101,4 @@ "set new password" => "setel sandi baru", "Default" => "Baku" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 782c4e5f806..2e97650bdb8 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,4 +1,5 @@ - "Ekki tókst að hlaða lista frá forrita síðu", "Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", @@ -65,3 +66,4 @@ "Storage" => "gagnapláss", "Default" => "Sjálfgefið" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 8c726fa0950..b6a508ba46b 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", "Your display name has been changed." => "Il tuo nome visualizzato è stato cambiato.", @@ -114,3 +115,4 @@ "set new password" => "imposta una nuova password", "Default" => "Predefinito" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 7d327ebc243..2fbe05befa9 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", "Your display name has been changed." => "表示名を変更しました。", @@ -114,3 +115,4 @@ "set new password" => "新しいパスワードを設定", "Default" => "デフォルト" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ka.php b/settings/l10n/ka.php index 63425e555b0..e9024a3c1c9 100644 --- a/settings/l10n/ka.php +++ b/settings/l10n/ka.php @@ -1,3 +1,5 @@ - "პაროლი" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index ee58004b0db..09a948a0574 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", "Your display name has been changed." => "თქვენი დისფლეის სახელი უკვე შეიცვალა", @@ -101,3 +102,4 @@ "set new password" => "დააყენეთ ახალი პაროლი", "Default" => "საწყისი პარამეტრები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index b88e1b735a0..4473a2c5126 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,4 +1,5 @@ - "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", "Your display name has been changed." => "표시 이름이 변경되었습니다.", @@ -103,3 +104,4 @@ "set new password" => "새 암호 설정", "Default" => "기본값" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index 244aba63a2c..4be8f212d39 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "چالاککردن", "Error" => "هه‌ڵه", "Saving..." => "پاشکه‌وتده‌کات...", @@ -8,3 +9,4 @@ "Email" => "ئیمه‌یل", "Username" => "ناوی به‌کارهێنه‌ر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 7060d41537a..7902e37a4f9 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,4 +1,5 @@ - "Konnt Lescht net vum App Store lueden", "Authentication error" => "Authentifikatioun's Fehler", "Email saved" => "E-mail gespäichert", @@ -42,3 +43,4 @@ "Other" => "Aner", "Username" => "Benotzernumm" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 75b3fe25c91..4e419112a02 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Neįmanoma įkelti sąrašo iš Programų Katalogo", "Authentication error" => "Autentikacijos klaida", "Group already exists" => "Grupė jau egzistuoja", @@ -72,3 +73,4 @@ "set new password" => "nustatyti naują slaptažodį", "Default" => "Numatytasis" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 84b4349d7b2..eba0f3c89ab 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevar lejupielādēt sarakstu no lietotņu veikala", "Authentication error" => "Autentifikācijas kļūda", "Unable to change display name" => "Nevarēja mainīt redzamo vārdu", @@ -100,3 +101,4 @@ "set new password" => "iestatīt jaunu paroli", "Default" => "Noklusējuma" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 66405a82434..61f1b8b3bcd 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,4 +1,5 @@ - "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе постои", @@ -57,3 +58,4 @@ "Other" => "Останато", "Username" => "Корисничко име" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index d151cba29f9..a65afb8ada1 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Ralat pengesahan", "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", @@ -34,3 +35,4 @@ "Other" => "Lain", "Username" => "Nama pengguna" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/my_MM.php b/settings/l10n/my_MM.php index 9459a2e53fe..f49a9c18023 100644 --- a/settings/l10n/my_MM.php +++ b/settings/l10n/my_MM.php @@ -1,4 +1,5 @@ - "ခွင့်ပြုချက်မအောင်မြင်", "Invalid request" => "တောင်းဆိုချက်မမှန်ကန်ပါ", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", @@ -6,3 +7,4 @@ "New password" => "စကားဝှက်အသစ်", "Username" => "သုံးစွဲသူအမည်" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 4d37872d18a..9048d89bad1 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Lasting av liste fra App Store feilet.", "Authentication error" => "Autentiseringsfeil", "Your display name has been changed." => "Ditt visningsnavn er blitt endret.", @@ -102,3 +103,4 @@ "set new password" => "sett nytt passord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index d80157904fe..d777a688c18 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,4 +1,5 @@ - "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", "Your display name has been changed." => "Uw weergavenaam is gewijzigd.", @@ -105,3 +106,4 @@ "set new password" => "Instellen nieuw wachtwoord", "Default" => "Standaard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index f95416331ba..5c7a0756d53 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarer ikkje å lasta inn liste fra app-butikken", "Authentication error" => "Autentiseringsfeil", "Your display name has been changed." => "Visingsnamnet ditt er endra.", @@ -101,3 +102,4 @@ "set new password" => "lag nytt passord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index b0860ee451d..bcc8d2d0337 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -1,4 +1,5 @@ - "Pas possible de cargar la tièra dempuèi App Store", "Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existís ja", @@ -48,3 +49,4 @@ "Other" => "Autres", "Username" => "Non d'usancièr" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 7b3d44975bc..21deabd5134 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można wczytać listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", "Your display name has been changed." => "Twoje wyświetlana nazwa została zmieniona.", @@ -104,3 +105,4 @@ "set new password" => "ustaw nowe hasło", "Default" => "Domyślny" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/pl_PL.php b/settings/l10n/pl_PL.php index 7dcd2fdfae8..91ae517f236 100644 --- a/settings/l10n/pl_PL.php +++ b/settings/l10n/pl_PL.php @@ -1,4 +1,6 @@ - "Uaktualnienie", "Email" => "Email" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 4c0d5fb5238..a46d6e22bde 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Não foi possível carregar lista da App Store", "Authentication error" => "Erro de autenticação", "Your display name has been changed." => "A exibição de seu nome foi alterada.", @@ -114,3 +115,4 @@ "set new password" => "definir nova senha", "Default" => "Padrão" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 776424f3b6c..84d70b6ae7e 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", "Your display name has been changed." => "O seu nome foi alterado", @@ -114,3 +115,4 @@ "set new password" => "definir nova palavra-passe", "Default" => "Padrão" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index f11cb2903f4..0b30001e8c1 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,4 +1,5 @@ - "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", "Your display name has been changed." => "Numele afişat a fost schimbat.", @@ -95,3 +96,4 @@ "Storage" => "Stocare", "Default" => "Implicită" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 8e7920f35c9..c58fafbf27a 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,4 +1,5 @@ - "Не удалось загрузить список из App Store", "Authentication error" => "Ошибка аутентификации", "Your display name has been changed." => "Ваше отображаемое имя было изменено.", @@ -114,3 +115,4 @@ "set new password" => "установить новый пароль", "Default" => "По умолчанию" ); +$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);"; diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index d80f7b08734..87b0ec11812 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,4 +1,5 @@ - "Ошибка", "Saving..." => "Сохранение", "deleted" => "удалено", @@ -7,3 +8,4 @@ "Email" => "Email", "Other" => "Другое" ); +$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);"; diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 7c5a8114f0b..374990a2c0c 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,4 +1,5 @@ - "සත්‍යාපන දෝෂයක්", "Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", "Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", @@ -49,3 +50,4 @@ "Other" => "වෙනත්", "Username" => "පරිශීලක නම" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 83cfb499de5..ad602ee860f 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", "Your display name has been changed." => "Vaše zobrazované meno bolo zmenené.", @@ -104,3 +105,4 @@ "set new password" => "nastaviť nové heslo", "Default" => "Predvolené" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 7cd143127cd..5ad921201b6 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,4 +1,5 @@ - "Ni mogoče naložiti seznama iz programskega središča", "Authentication error" => "Napaka med overjanjem", "Your display name has been changed." => "Prikazano ime je bilo spremenjeno.", @@ -103,3 +104,4 @@ "set new password" => "nastavi novo geslo", "Default" => "Privzeto" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 78c051d1011..1a8b588c0bd 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -1,4 +1,5 @@ - "Veprim i gabuar gjatë vërtetimit të identitetit", "Error" => "Veprim i gabuar", "undo" => "anulo", @@ -12,3 +13,4 @@ "Email" => "Email-i", "Username" => "Përdoruesi" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 4c1443a8d7c..b2b6538c4c3 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,4 +1,5 @@ - "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при провери идентитета", "Unable to change display name" => "Не могу да променим име за приказ", @@ -99,3 +100,4 @@ "set new password" => "постави нову лозинку", "Default" => "Подразумевано" ); +$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);"; diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 8e375a7f23c..f23e665bb27 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -1,4 +1,5 @@ - "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", "Invalid request" => "Neispravan zahtev", @@ -16,3 +17,4 @@ "Other" => "Drugo", "Username" => "Korisničko ime" ); +$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);"; diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 3ab574bd449..ad1660e25c9 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,4 +1,5 @@ - "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", "Your display name has been changed." => "Ditt visningsnamn har ändrats.", @@ -114,3 +115,4 @@ "set new password" => "ange nytt lösenord", "Default" => "Förvald" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 4dfad2aa2b4..0dc206c7993 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது", "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Group already exists" => "குழு ஏற்கனவே உள்ளது", @@ -47,3 +48,4 @@ "Other" => "மற்றவை", "Username" => "பயனாளர் பெயர்" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/te.php b/settings/l10n/te.php index 3a85a015205..21caa79912a 100644 --- a/settings/l10n/te.php +++ b/settings/l10n/te.php @@ -1,4 +1,5 @@ - "పొరపాటు", "Delete" => "తొలగించు", "More" => "మరిన్ని", @@ -9,3 +10,4 @@ "Language" => "భాష", "Username" => "వాడుకరి పేరు" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 006b666ff63..505e9ff29cb 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", @@ -85,3 +86,4 @@ "set new password" => "ตั้งค่ารหัสผ่านใหม่", "Default" => "ค่าเริ่มต้น" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 7ce0af1a28d..27ae7ae25ba 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,4 +1,5 @@ - "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your display name has been changed." => "Görüntülenen isminiz değiştirildi.", @@ -104,3 +105,4 @@ "set new password" => "yeni parola belirle", "Default" => "Varsayılan" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index abed87ef0d4..d182d9198de 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -1,4 +1,5 @@ - "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", "Your display name has been changed." => "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى.", @@ -70,3 +71,4 @@ "set new password" => "يېڭى ئىم تەڭشە", "Default" => "كۆڭۈلدىكى" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index cb4aa109651..c6a9ab28624 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вдалося завантажити список з App Store", "Authentication error" => "Помилка автентифікації", "Unable to change display name" => "Не вдалося змінити зображене ім'я", @@ -100,3 +101,4 @@ "set new password" => "встановити новий пароль", "Default" => "За замовчуванням" ); +$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);"; diff --git a/settings/l10n/ur_PK.php b/settings/l10n/ur_PK.php index ce1d425c970..ff3eb3d11ca 100644 --- a/settings/l10n/ur_PK.php +++ b/settings/l10n/ur_PK.php @@ -1,6 +1,8 @@ - "ایرر", "Password" => "پاسورڈ", "New password" => "نیا پاسورڈ", "Username" => "یوزر نیم" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 1c929746a3f..4607229b4d9 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể tải danh sách ứng dụng từ App Store", "Authentication error" => "Lỗi xác thực", "Unable to change display name" => "Không thể thay đổi tên hiển thị", @@ -86,3 +87,4 @@ "set new password" => "đặt mật khẩu mới", "Default" => "Mặc định" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 1853bae9207..46c02476235 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "不能从App Store 中加载列表", "Authentication error" => "验证错误", "Your display name has been changed." => "您的显示名称已修改", @@ -114,3 +115,4 @@ "set new password" => "设置新的密码", "Default" => "默认" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 47fcc54f430..5a42bf06754 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法从应用商店载入列表", "Authentication error" => "认证出错", "Your display name has been changed." => "您的显示名字已经改变", @@ -103,3 +104,4 @@ "set new password" => "设置新密码", "Default" => "默认" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 8da97462751..f9bdb44956d 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -1,4 +1,5 @@ - "錯誤", "Groups" => "群組", "Delete" => "刪除", @@ -7,3 +8,4 @@ "Email" => "電郵", "Username" => "用戶名稱" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index b4590859dae..0a0fcf84e2d 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", "Your display name has been changed." => "已更改顯示名稱", @@ -114,3 +115,4 @@ "set new password" => "設定新密碼", "Default" => "預設" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; -- GitLab From 9549bd3e68aa32bb9fa1a9a54bda84fa5070966f Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 9 Aug 2013 20:37:18 +0200 Subject: [PATCH 145/164] Use plural translations --- apps/files/js/filelist.js | 5 +++-- apps/files/js/files.js | 14 +++----------- apps/files_trashbin/js/trash.js | 12 ++---------- core/js/js.js | 10 ++++------ lib/template/functions.php | 10 ++++------ 5 files changed, 16 insertions(+), 35 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index b858e2580ee..e0c72295702 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -452,13 +452,14 @@ $(document).ready(function(){ var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads += 1; uploadtext.attr('currentUploads', currentUploads); + var translatedText = n('files', '%n file uploading', '%n files uploading', currentUploads); if(currentUploads === 1) { var img = OC.imagePath('core', 'loading.gif'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(t('files', '1 file uploading')); + uploadtext.text(translatedText); uploadtext.show(); } else { - uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); + uploadtext.text(translatedText); } } else { // add as stand-alone row to filelist diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 3fad3fae7d3..53fc25f41b0 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -759,21 +759,13 @@ function procesSelection(){ $('#headerSize').text(humanFileSize(totalSize)); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length==1){ - selection+=t('files','1 folder'); - }else{ - selection+=t('files','{count} folders',{count: selectedFolders.length}); - } + selection += n('files', '%n folder', '%n folders', selectedFolders.length); if(selectedFiles.length>0){ selection+=' & '; } } if(selectedFiles.length>0){ - if(selectedFiles.length==1){ - selection+=t('files','1 file'); - }else{ - selection+=t('files','{count} files',{count: selectedFiles.length}); - } + selection += n('files', '%n file', '%n files', selectedFiles.length); } $('#headerName>span.name').text(selection); $('#modified').text(''); @@ -852,4 +844,4 @@ function checkTrashStatus() { $("input[type=button][id=trash]").removeAttr("disabled"); } }); -} \ No newline at end of file +} diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index c3c958b07a7..b14a7240cbe 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -188,21 +188,13 @@ function processSelection(){ $('.selectedActions').show(); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length === 1){ - selection+=t('files','1 folder'); - }else{ - selection+=t('files','{count} folders',{count: selectedFolders.length}); - } + selection += n('files', '%n folder', '%n folders', selectedFolders.length); if(selectedFiles.length>0){ selection+=' & '; } } if(selectedFiles.length>0){ - if(selectedFiles.length === 1){ - selection+=t('files','1 file'); - }else{ - selection+=t('files','{count} files',{count: selectedFiles.length}); - } + selection += n('files', '%n file', '%n files', selectedFiles.length); } $('#headerName>span.name').text(selection); $('#modified').text(''); diff --git a/core/js/js.js b/core/js/js.js index 1d1711383f7..0fc4bab80a7 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -812,15 +812,13 @@ function relative_modified_date(timestamp) { var diffdays = Math.round(diffhours/24); var diffmonths = Math.round(diffdays/31); if(timediff < 60) { return t('core','seconds ago'); } - else if(timediff < 120) { return t('core','1 minute ago'); } - else if(timediff < 3600) { return t('core','{minutes} minutes ago',{minutes: diffminutes}); } - else if(timediff < 7200) { return t('core','1 hour ago'); } - else if(timediff < 86400) { return t('core','{hours} hours ago',{hours: diffhours}); } + else if(timediff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffminutes); } + else if(timediff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffhours); } else if(timediff < 86400) { return t('core','today'); } else if(timediff < 172800) { return t('core','yesterday'); } - else if(timediff < 2678400) { return t('core','{days} days ago',{days: diffdays}); } + else if(timediff < 2678400) { return n('core', '%n day ago', '%n days ago', diffdays); } else if(timediff < 5184000) { return t('core','last month'); } - else if(timediff < 31556926) { return t('core','{months} months ago',{months: diffmonths}); } + else if(timediff < 31556926) { return n('core', '%n month ago', '%n months ago', diffmonths); } //else if(timediff < 31556926) { return t('core','months ago'); } else if(timediff < 63113852) { return t('core','last year'); } else { return t('core','years ago'); } diff --git a/lib/template/functions.php b/lib/template/functions.php index 2d43cae1c0c..717e197c1cb 100644 --- a/lib/template/functions.php +++ b/lib/template/functions.php @@ -78,15 +78,13 @@ function relative_modified_date($timestamp) { $diffmonths = round($diffdays/31); if($timediff < 60) { return $l->t('seconds ago'); } - else if($timediff < 120) { return $l->t('1 minute ago'); } - else if($timediff < 3600) { return $l->t('%d minutes ago', $diffminutes); } - else if($timediff < 7200) { return $l->t('1 hour ago'); } - else if($timediff < 86400) { return $l->t('%d hours ago', $diffhours); } + else if($timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); } + else if($timediff < 86400) { return $l->n('%n hour ago', '%n hours ago', $diffhours); } else if((date('G')-$diffhours) > 0) { return $l->t('today'); } else if((date('G')-$diffhours) > -24) { return $l->t('yesterday'); } - else if($timediff < 2678400) { return $l->t('%d days ago', $diffdays); } + else if($timediff < 2678400) { return $l->n('%n day go', '%n days ago', $diffdays); } else if($timediff < 5184000) { return $l->t('last month'); } - else if((date('n')-$diffmonths) > 0) { return $l->t('%d months ago', $diffmonths); } + else if((date('n')-$diffmonths) > 0) { return $l->n('%n month ago', '%n months ago', $diffmonths); } else if($timediff < 63113852) { return $l->t('last year'); } else { return $l->t('years ago'); } } -- GitLab From 9c22046bffac523e1eff12d7eff7409c786de176 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 8 Aug 2013 16:52:11 +0200 Subject: [PATCH 146/164] Do not pass numeric strings to strtotime() when formatting dates. strtotime() will return false and the date will be formatted as the 0-timestamp (e.g. January 1, 1970 00:00) otherwise. --- lib/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/l10n.php b/lib/l10n.php index d2da302b644..5cfe119a4ff 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -387,7 +387,7 @@ class OC_L10N { if($data instanceof DateTime) { return $data->format($this->localizations[$type]); } - elseif(is_string($data)) { + elseif(is_string($data) && !is_numeric($data)) { $data = strtotime($data); } $locales = array(self::findLanguage()); -- GitLab From 43be3eb4d0112215f03157c81f9f94e03009718f Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 9 Aug 2013 01:21:45 +0200 Subject: [PATCH 147/164] Changing elseif statement to what the PEAR coding guidelines say. --- lib/l10n.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index 5cfe119a4ff..f93443b886a 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -386,8 +386,7 @@ class OC_L10N { case 'time': if($data instanceof DateTime) { return $data->format($this->localizations[$type]); - } - elseif(is_string($data) && !is_numeric($data)) { + } elseif(is_string($data) && !is_numeric($data)) { $data = strtotime($data); } $locales = array(self::findLanguage()); -- GitLab From b6b1bc5d09e1b4d4848ae99e0963217f92ad151c Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 9 Aug 2013 22:28:03 +0200 Subject: [PATCH 148/164] Add datetime test for numeric string. --- tests/lib/l10n.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index dfc5790c2e7..bd5984add15 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -52,4 +52,11 @@ class Test_L10n extends PHPUnit_Framework_TestCase { $this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5)); } + /** + * Issue #4360: Do not call strtotime() on numeric strings. + */ + public function testNumericStringToDateTime() { + $l = new OC_L10N('test'); + $this->assertSame('February 13, 2009 23:31', $l->l('datetime', '1234567890')); + } } -- GitLab From 0e3dea7111e66c3619c6fe989e79ff80fb18e2b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 9 Aug 2013 23:36:23 +0200 Subject: [PATCH 149/164] adding test case for a numeric value --- tests/lib/l10n.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index bd5984add15..12eac818f84 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -53,10 +53,15 @@ class Test_L10n extends PHPUnit_Framework_TestCase { } /** - * Issue #4360: Do not call strtotime() on numeric strings. - */ + * Issue #4360: Do not call strtotime() on numeric strings. + */ public function testNumericStringToDateTime() { $l = new OC_L10N('test'); $this->assertSame('February 13, 2009 23:31', $l->l('datetime', '1234567890')); } + + public function testNumericToDateTime() { + $l = new OC_L10N('test'); + $this->assertSame('February 13, 2009 23:31', $l->l('datetime', 1234567890)); + } } -- GitLab From 5ebff8cfc453552201f0bde1b0eeba13f540d0a6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 11 Aug 2013 08:11:03 -0400 Subject: [PATCH 150/164] [tx-robot] updated from transifex --- apps/files/l10n/uk.php | 3 ++ apps/files_encryption/l10n/ca.php | 1 + apps/files_encryption/l10n/de.php | 1 + apps/files_encryption/l10n/de_DE.php | 1 + apps/files_encryption/l10n/gl.php | 1 + apps/files_encryption/l10n/it.php | 1 + apps/files_encryption/l10n/ja_JP.php | 1 + apps/files_encryption/l10n/pt_BR.php | 1 + apps/files_encryption/l10n/sl.php | 2 ++ apps/files_encryption/l10n/sv.php | 1 + core/l10n/nl.php | 2 ++ l10n/af_ZA/core.po | 36 ++++++++++--------- l10n/af_ZA/lib.po | 10 ++---- l10n/ar/core.po | 8 +++-- l10n/ar/lib.po | 10 ++---- l10n/be/core.po | 52 +++++++++++++++------------- l10n/be/lib.po | 14 +++----- l10n/bg_BG/core.po | 8 +++-- l10n/bg_BG/lib.po | 10 ++---- l10n/bn_BD/core.po | 8 +++-- l10n/bn_BD/lib.po | 10 ++---- l10n/bs/core.po | 36 ++++++++++--------- l10n/bs/lib.po | 14 +++----- l10n/ca/core.po | 10 ++++-- l10n/ca/files_encryption.po | 8 ++--- l10n/ca/lib.po | 12 +++---- l10n/cs_CZ/core.po | 10 ++++-- l10n/cs_CZ/lib.po | 12 +++---- l10n/cy_GB/core.po | 8 +++-- l10n/cy_GB/lib.po | 10 ++---- l10n/da/core.po | 10 ++++-- l10n/da/lib.po | 12 +++---- l10n/de/core.po | 10 ++++-- l10n/de/files_encryption.po | 9 ++--- l10n/de/lib.po | 12 +++---- l10n/de_AT/core.po | 36 ++++++++++--------- l10n/de_AT/lib.po | 10 ++---- l10n/de_CH/core.po | 10 ++++-- l10n/de_CH/lib.po | 12 +++---- l10n/de_DE/core.po | 10 ++++-- l10n/de_DE/files_encryption.po | 8 ++--- l10n/de_DE/lib.po | 12 +++---- l10n/el/core.po | 10 ++++-- l10n/el/lib.po | 12 +++---- l10n/en@pirate/core.po | 36 ++++++++++--------- l10n/en@pirate/lib.po | 14 +++----- l10n/eo/core.po | 8 +++-- l10n/eo/lib.po | 10 ++---- l10n/es/core.po | 10 ++++-- l10n/es/lib.po | 12 +++---- l10n/es_AR/core.po | 8 +++-- l10n/es_AR/lib.po | 12 +++---- l10n/et_EE/core.po | 10 ++++-- l10n/et_EE/lib.po | 12 +++---- l10n/eu/core.po | 10 ++++-- l10n/eu/lib.po | 12 +++---- l10n/fa/core.po | 8 +++-- l10n/fa/lib.po | 10 ++---- l10n/fi_FI/core.po | 10 ++++-- l10n/fi_FI/lib.po | 10 ++---- l10n/fr/core.po | 8 +++-- l10n/fr/lib.po | 10 ++---- l10n/gl/core.po | 10 ++++-- l10n/gl/files_encryption.po | 8 ++--- l10n/gl/lib.po | 12 +++---- l10n/he/core.po | 8 +++-- l10n/he/lib.po | 10 ++---- l10n/hi/core.po | 8 +++-- l10n/hi/lib.po | 10 ++---- l10n/hr/core.po | 8 +++-- l10n/hr/lib.po | 10 ++---- l10n/hu_HU/core.po | 10 ++++-- l10n/hu_HU/lib.po | 12 +++---- l10n/hy/core.po | 52 +++++++++++++++------------- l10n/hy/lib.po | 14 +++----- l10n/ia/core.po | 8 +++-- l10n/ia/lib.po | 10 ++---- l10n/id/core.po | 8 +++-- l10n/id/lib.po | 10 ++---- l10n/is/core.po | 8 +++-- l10n/is/lib.po | 10 ++---- l10n/it/core.po | 10 ++++-- l10n/it/files_encryption.po | 8 ++--- l10n/it/lib.po | 12 +++---- l10n/ja_JP/core.po | 10 ++++-- l10n/ja_JP/files_encryption.po | 8 ++--- l10n/ja_JP/lib.po | 12 +++---- l10n/ka/core.po | 36 ++++++++++--------- l10n/ka/lib.po | 10 ++---- l10n/ka_GE/core.po | 8 +++-- l10n/ka_GE/lib.po | 10 ++---- l10n/kn/core.po | 52 +++++++++++++++------------- l10n/kn/lib.po | 14 +++----- l10n/ko/core.po | 8 +++-- l10n/ko/lib.po | 10 ++---- l10n/ku_IQ/core.po | 8 +++-- l10n/ku_IQ/lib.po | 10 ++---- l10n/lb/core.po | 8 +++-- l10n/lb/lib.po | 10 ++---- l10n/lt_LT/core.po | 8 +++-- l10n/lt_LT/lib.po | 10 ++---- l10n/lv/core.po | 8 +++-- l10n/lv/lib.po | 10 ++---- l10n/mk/core.po | 8 +++-- l10n/mk/lib.po | 10 ++---- l10n/ml_IN/core.po | 52 +++++++++++++++------------- l10n/ml_IN/lib.po | 14 +++----- l10n/ms_MY/core.po | 8 +++-- l10n/ms_MY/lib.po | 10 ++---- l10n/my_MM/core.po | 36 ++++++++++--------- l10n/my_MM/lib.po | 10 ++---- l10n/nb_NO/core.po | 8 +++-- l10n/nb_NO/lib.po | 10 ++---- l10n/ne/core.po | 52 +++++++++++++++------------- l10n/ne/lib.po | 14 +++----- l10n/nl/core.po | 13 ++++--- l10n/nl/lib.po | 12 +++---- l10n/nn_NO/core.po | 8 +++-- l10n/nn_NO/lib.po | 10 ++---- l10n/oc/core.po | 8 +++-- l10n/oc/lib.po | 10 ++---- l10n/pl/core.po | 10 ++++-- l10n/pl/lib.po | 12 +++---- l10n/pt_BR/core.po | 10 ++++-- l10n/pt_BR/files_encryption.po | 8 ++--- l10n/pt_BR/lib.po | 12 +++---- l10n/pt_PT/core.po | 10 ++++-- l10n/pt_PT/lib.po | 12 +++---- l10n/ro/core.po | 10 ++++-- l10n/ro/lib.po | 10 ++---- l10n/ru/core.po | 10 ++++-- l10n/ru/lib.po | 12 +++---- l10n/si_LK/core.po | 8 +++-- l10n/si_LK/lib.po | 10 ++---- l10n/sk/core.po | 52 +++++++++++++++------------- l10n/sk/lib.po | 14 +++----- l10n/sk_SK/core.po | 10 ++++-- l10n/sk_SK/lib.po | 12 +++---- l10n/sl/core.po | 10 ++++-- l10n/sl/files_encryption.po | 10 +++--- l10n/sl/lib.po | 10 ++---- l10n/sq/core.po | 10 ++++-- l10n/sq/lib.po | 10 ++---- l10n/sr/core.po | 8 +++-- l10n/sr/lib.po | 10 ++---- l10n/sr@latin/core.po | 36 ++++++++++--------- l10n/sr@latin/lib.po | 10 ++---- l10n/sv/core.po | 10 ++++-- l10n/sv/files_encryption.po | 8 ++--- l10n/sv/lib.po | 12 +++---- l10n/sw_KE/core.po | 52 +++++++++++++++------------- l10n/sw_KE/lib.po | 14 +++----- l10n/ta_LK/core.po | 8 +++-- l10n/ta_LK/lib.po | 10 ++---- l10n/te/core.po | 8 +++-- l10n/te/lib.po | 10 ++---- l10n/templates/core.pot | 6 +++- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 8 ++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 8 +++-- l10n/th_TH/lib.po | 10 ++---- l10n/tr/core.po | 8 +++-- l10n/tr/lib.po | 10 ++---- l10n/ug/core.po | 8 +++-- l10n/ug/lib.po | 10 ++---- l10n/uk/core.po | 8 +++-- l10n/uk/files.po | 13 +++---- l10n/uk/lib.po | 10 ++---- l10n/ur_PK/core.po | 8 +++-- l10n/ur_PK/lib.po | 10 ++---- l10n/vi/core.po | 8 +++-- l10n/vi/lib.po | 10 ++---- l10n/zh_CN.GB2312/core.po | 10 ++++-- l10n/zh_CN.GB2312/lib.po | 10 ++---- l10n/zh_CN/core.po | 8 +++-- l10n/zh_CN/lib.po | 10 ++---- l10n/zh_HK/core.po | 8 +++-- l10n/zh_HK/lib.po | 10 ++---- l10n/zh_TW/core.po | 10 ++++-- l10n/zh_TW/lib.po | 10 ++---- lib/l10n/af_ZA.php | 1 - lib/l10n/ar.php | 1 - lib/l10n/bg_BG.php | 1 - lib/l10n/bn_BD.php | 1 - lib/l10n/ca.php | 1 - lib/l10n/cs_CZ.php | 1 - lib/l10n/cy_GB.php | 1 - lib/l10n/da.php | 1 - lib/l10n/de.php | 1 - lib/l10n/de_CH.php | 1 - lib/l10n/de_DE.php | 1 - lib/l10n/el.php | 1 - lib/l10n/eo.php | 1 - lib/l10n/es.php | 1 - lib/l10n/es_AR.php | 1 - lib/l10n/et_EE.php | 1 - lib/l10n/eu.php | 1 - lib/l10n/fa.php | 1 - lib/l10n/fi_FI.php | 1 - lib/l10n/fr.php | 1 - lib/l10n/gl.php | 1 - lib/l10n/he.php | 1 - lib/l10n/hi.php | 3 +- lib/l10n/hr.php | 1 - lib/l10n/hu_HU.php | 1 - lib/l10n/ia.php | 1 - lib/l10n/id.php | 1 - lib/l10n/is.php | 1 - lib/l10n/it.php | 1 - lib/l10n/ja_JP.php | 1 - lib/l10n/ka_GE.php | 1 - lib/l10n/ko.php | 1 - lib/l10n/ku_IQ.php | 1 - lib/l10n/lb.php | 1 - lib/l10n/lt_LT.php | 1 - lib/l10n/lv.php | 1 - lib/l10n/mk.php | 1 - lib/l10n/ms_MY.php | 1 - lib/l10n/my_MM.php | 1 - lib/l10n/nb_NO.php | 1 - lib/l10n/nl.php | 1 - lib/l10n/nn_NO.php | 1 - lib/l10n/oc.php | 1 - lib/l10n/pl.php | 1 - lib/l10n/pt_BR.php | 1 - lib/l10n/pt_PT.php | 1 - lib/l10n/ro.php | 1 - lib/l10n/ru.php | 1 - lib/l10n/si_LK.php | 1 - lib/l10n/sk_SK.php | 1 - lib/l10n/sl.php | 1 - lib/l10n/sq.php | 1 - lib/l10n/sr.php | 1 - lib/l10n/sr@latin.php | 1 - lib/l10n/sv.php | 1 - lib/l10n/ta_LK.php | 1 - lib/l10n/th_TH.php | 1 - lib/l10n/tr.php | 1 - lib/l10n/ug.php | 1 - lib/l10n/uk.php | 1 - lib/l10n/ur_PK.php | 1 - lib/l10n/vi.php | 1 - lib/l10n/zh_CN.GB2312.php | 1 - lib/l10n/zh_CN.php | 1 - lib/l10n/zh_HK.php | 1 - lib/l10n/zh_TW.php | 1 - 254 files changed, 1100 insertions(+), 1148 deletions(-) diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3cb4f00029d..ad40f16e8b6 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -47,6 +47,7 @@ $TRANSLATIONS = array( "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлів", +"%s could not be renamed" => "%s не може бути перейменований", "Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", @@ -70,6 +71,8 @@ $TRANSLATIONS = array( "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері.", "Files are being scanned, please wait." => "Файли скануються, зачекайте, будь-ласка.", "Current scanning" => "Поточне сканування", +"directory" => "каталог", +"directories" => "каталоги", "file" => "файл", "files" => "файли", "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index c7581fa6046..14d7992ad5d 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", "Missing requirements." => "Manca de requisits.", +"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." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 53c7984001e..4c36d31ed6b 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", +"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." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 5773c35c0c1..200001e6ebf 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", +"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." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 63f111bd65d..abf12d73d57 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", +"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." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 09a562a64b3..f9534d7eca3 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Missing requirements." => "Requisiti mancanti.", +"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." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 4490fcddfcc..d1f8303bda7 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", "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拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 9e8122b9ced..5b8a68657b7 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos não encontrados.", +"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, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index e5a0cf269b1..8b2f264c62e 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", "Missing requirements." => "Manjkajoče zahteve", +"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." => "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", +"Following users are not set up for encryption:" => "Naslednji uporabniki še nimajo nastavljenega šifriranja:", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index ce43d7d5cf1..88ba6b47159 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", +"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." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 76465cd830c..d18be201622 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -111,9 +111,11 @@ $TRANSLATIONS = array( "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL-extentie aan.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de resettokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt.", +"For information how to properly configure your server, please see the documentation." => "Bekijk de documentatie voor Informatie over het correct configureren van uw server.", "Create an admin account" => "Maak een beheerdersaccount aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 9172c1dafcd..d38d730a082 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Instellings" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Teken uit" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6d1d757e277..6e3cacf3df9 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Gebruikers" #: app.php:409 -msgid "Apps" -msgstr "Toepassings" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 202f964f05e..b13030b52b8 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "الخروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "تم رفض تسجيل الدخول التلقائي!" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 145239687f0..6fe38212e1b 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "المستخدمين" #: app.php:409 -msgid "Apps" -msgstr "التطبيقات" - -#: app.php:417 msgid "Admin" msgstr "المدير" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index 888d740721f..2e14badcc29 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 56bb86b0ac2..d6a34784f4c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index b5b1ad52f90..7bd4f710b0e 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Изход" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 468be09e1a3..4262850f24b 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Потребители" #: app.php:409 -msgid "Apps" -msgstr "Приложения" - -#: app.php:417 msgid "Admin" msgstr "Админ" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index fe30f93c29d..35ee439b4d2 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "প্রস্থান" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 2dc3f5e31f4..94dd00b4762 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ব্যবহারকারী" #: app.php:409 -msgid "Apps" -msgstr "অ্যাপ" - -#: app.php:417 msgid "Admin" msgstr "প্রশাসন" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 6400ac456e2..7ff5f0d5e12 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 4def658658b..c2f770fea8e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 638088dfd7b..8e4a149618b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s està disponible. Obtingueu més informació de com actualitzar." msgid "Log out" msgstr "Surt" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "L'ha rebutjat l'acceditació automàtica!" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 6c3703bdd77..b7b99faec20 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 13:30+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ 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 "" +msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 375cbe8cb50..5ab8cad9372 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuaris" #: app.php:409 -msgid "Apps" -msgstr "Aplicacions" - -#: app.php:417 msgid "Admin" msgstr "Administració" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d8c8b13aa24..ef830001704 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -582,6 +582,10 @@ msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." msgid "Log out" msgstr "Odhlásit se" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto!" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index f6b76bfe8e0..18d9a5a279e 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 18:00+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Uživatelé" #: app.php:409 -msgid "Apps" -msgstr "Aplikace" - -#: app.php:417 msgid "Admin" msgstr "Administrace" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2776cc98d0a..e17b731ac31 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." msgid "Log out" msgstr "Allgofnodi" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Gwrthodwyd mewngofnodi awtomatig!" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 3a0c1d26921..c4ce11ab837 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Defnyddwyr" #: app.php:409 -msgid "Apps" -msgstr "Pecynnau" - -#: app.php:417 msgid "Admin" msgstr "Gweinyddu" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index e6fec6fa4bb..4f043cabb6e 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -581,6 +581,10 @@ msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." msgid "Log out" msgstr "Log ud" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk login afvist!" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 2f0661d9448..428fab08b39 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Brugere" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" diff --git a/l10n/de/core.po b/l10n/de/core.po index 4944745fbad..02304632099 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -585,6 +585,10 @@ msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen e msgid "Log out" msgstr "Abmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatischer Login zurückgewiesen!" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index f7cc4dd5ef8..0505a208648 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -5,6 +5,7 @@ # Translators: # iLennart21 , 2013 # Stephan Köninger , 2013 +# Mario Siegmann , 2013 # ninov , 2013 # Pwnicorn , 2013 # thillux, 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 14:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +77,7 @@ 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 "" +msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 109207a62fc..2c23153b7ad 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 26a530d9eeb..d28efc5d0cb 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 39a75daeadf..4d42aa22717 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 355a9161948..d32af375341 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -585,6 +585,10 @@ msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen e msgid "Log out" msgstr "Abmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert!" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 5fa64da13b9..a3ba8221ed8 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 13:40+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index e72058f88c7..930d7095624 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -584,6 +584,10 @@ msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen e msgid "Log out" msgstr "Abmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert!" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 40c198d0808..7e0878a9eb1 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 14:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ 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 "" +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 9e998d3694f..ff53275a286 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." diff --git a/l10n/el/core.po b/l10n/el/core.po index be7ecd8335c..513c719b8b8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -585,6 +585,10 @@ msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες π msgid "Log out" msgstr "Αποσύνδεση" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index b0250c735a2..2bc4d5854c9 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 08:00+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Χρήστες" #: app.php:409 -msgid "Apps" -msgstr "Εφαρμογές" - -#: app.php:417 msgid "Admin" msgstr "Διαχειριστής" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index a58c1135ed9..9d2bf6cd16f 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -138,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -579,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index fb244e8b564..57f3f1a3de0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web services under your control" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index cdf3f785d45..6a0ad8b24ab 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." msgid "Log out" msgstr "Elsaluti" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "La aŭtomata ensaluto malakceptiĝis!" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 3fd499750c1..313fcc5b1ed 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Uzantoj" #: app.php:409 -msgid "Apps" -msgstr "Aplikaĵoj" - -#: app.php:417 msgid "Admin" msgstr "Administranto" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 32c9c17e3b9..3cd276adf72 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pablomillaquen \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -586,6 +586,10 @@ msgstr "%s esta disponible. Obtener mas información de como actualizar." msgid "Log out" msgstr "Salir" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 0ac1ec2a976..8ff17ba6da0 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: pablomillaquen \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Aplicaciones" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b338b66c650..886ceb9876e 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s está disponible. Obtené más información sobre cómo actualizar." msgid "Log out" msgstr "Cerrar la sesión" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡El inicio de sesión automático fue rechazado!" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 97230b87fe8..47c28e8b23b 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 370f8216d28..88060078299 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." msgid "Log out" msgstr "Logi välja" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index e54afea757d..6324649b8a6 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Kasutajad" #: app.php:409 -msgid "Apps" -msgstr "Rakendused" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." diff --git a/l10n/eu/core.po b/l10n/eu/core.po index cd98baf2556..3b85fc58760 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,6 +580,10 @@ msgstr "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu." msgid "Log out" msgstr "Saioa bukatu" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 3cfce3b6f4b..03ab66ae767 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Erabiltzaileak" #: app.php:409 -msgid "Apps" -msgstr "Aplikazioak" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 55f8108cb9d..7b7f10c2561 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s در دسترس است. برای چگونگی به روز رسانی msgid "Log out" msgstr "خروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ورود به سیستم اتوماتیک ردشد!" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a547252a6b0..2306994e9a2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "کاربران" #: app.php:409 -msgid "Apps" -msgstr " برنامه ها" - -#: app.php:417 msgid "Admin" msgstr "مدیر" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 8fea4b8d57f..d6731b11ed1 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan." msgid "Log out" msgstr "Kirjaudu ulos" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ba476ca2d4f..b5976ee80e9 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Käyttäjät" #: app.php:409 -msgid "Apps" -msgstr "Sovellukset" - -#: app.php:417 msgid "Admin" msgstr "Ylläpitäjä" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index cc9facab283..7220f53b56f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -583,6 +583,10 @@ msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre msgid "Log out" msgstr "Se déconnecter" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Connexion automatique rejetée !" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a16420a728b..d9624537671 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Utilisateurs" #: app.php:409 -msgid "Apps" -msgstr "Applications" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 44277fdb629..893b8b10288 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar. msgid "Log out" msgstr "Desconectar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automática" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index e939f970b21..1395e13a4f3 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 18:50+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" @@ -73,7 +73,7 @@ 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 "" +msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index e166c0d1ada..720088a3904 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Aplicativos" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." diff --git a/l10n/he/core.po b/l10n/he/core.po index 2643cd36c6e..94421da95d9 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע msgid "Log out" msgstr "התנתקות" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 3596f6929c0..c7bd204b178 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "משתמשים" #: app.php:409 -msgid "Apps" -msgstr "יישומים" - -#: app.php:417 msgid "Admin" msgstr "מנהל" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 55e08635f21..2270abcf21e 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "लोग आउट" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 82f9745909e..93ab01a0ec1 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "उपयोगकर्ता" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 5354c2149aa..e6bf5892d20 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 04da1356f08..c8ee9a0b1d2 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Korisnici" #: app.php:409 -msgid "Apps" -msgstr "Aplikacije" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 56e2927a7c1..85697e39546 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,6 +580,10 @@ msgstr "%s rendelkezésre áll. További információ a frissítéshez." msgid "Log out" msgstr "Kilépés" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Az automatikus bejelentkezés sikertelen!" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 40fca00f72d..7203fc91f57 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Felhasználók" #: app.php:409 -msgid "Apps" -msgstr "Alkalmazások" - -#: app.php:417 msgid "Admin" msgstr "Adminsztráció" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." diff --git a/l10n/hy/core.po b/l10n/hy/core.po index d9387c503c8..06cfc86021f 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 40f120e5355..2ebe68122dc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 68c2afbe4c7..15878e30bc8 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Clauder le session" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 5a15ebc1e9c..131f9be37a2 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Usatores" #: app.php:409 -msgid "Apps" -msgstr "Applicationes" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index e610cd15ca0..3f5ac492f2f 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Keluar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Masuk otomatis ditolak!" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 808d582a7d0..0bcad292387 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Pengguna" #: app.php:409 -msgid "Apps" -msgstr "Aplikasi" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index cc6af8f2f4e..6fea09381a7 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." msgid "Log out" msgstr "Útskrá" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Sjálfvirkri innskráningu hafnað!" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 32295e15e8f..4c909fbf99b 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Notendur" #: app.php:409 -msgid "Apps" -msgstr "Forrit" - -#: app.php:417 msgid "Admin" msgstr "Stjórnun" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index b9a49a7b181..349426a5809 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -581,6 +581,10 @@ msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." msgid "Log out" msgstr "Esci" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index cc862c79a18..390dd69d83c 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 07:20+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ 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 "" +msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index ef7fe07c142..343d55a8032 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Utenti" #: app.php:409 -msgid "Apps" -msgstr "Applicazioni" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 9833951b0c6..392cfcec0fe 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -581,6 +581,10 @@ msgstr "%s が利用可能です。更新方法に関してさらに情報を取 msgid "Log out" msgstr "ログアウト" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動ログインは拒否されました!" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4e956587781..669ed7fa419 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-10 01:40+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ 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 "" +msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 7291b237c93..c7e5dfa573d 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 09:37+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "ユーザ" #: app.php:409 -msgid "Apps" -msgstr "アプリ" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index a6e96b91fef..2686e55fb62 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "დღეს" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 9c181af82e1..b16a5efbd16 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "მომხმარებლები" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ad8ac29253f..e901973de4b 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "გამოსვლა" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index cbc529f5892..a7b9f8ba3ca 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "მომხმარებელი" #: app.php:409 -msgid "Apps" -msgstr "აპლიკაციები" - -#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index fe738594442..234999f8973 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 9b637e4cf9f..a588c33d4d3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bce48a1497d..415eea4475b 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "로그아웃" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "자동 로그인이 거부되었습니다!" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index a603bde297f..278bf97ba19 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "사용자" #: app.php:409 -msgid "Apps" -msgstr "앱" - -#: app.php:417 msgid "Admin" msgstr "관리자" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1e7f34752ef..913a671cfbe 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "چوونەدەرەوە" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 84017f953cd..495e1fd6a7a 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "به‌كارهێنه‌ر" #: app.php:409 -msgid "Apps" -msgstr "به‌رنامه‌كان" - -#: app.php:417 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 17b02060871..bd6ae2ec478 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséi msgid "Log out" msgstr "Ofmellen" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatesch Umeldung ofgeleent!" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index ede1c573d7c..a5823a1cfec 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Benotzer" #: app.php:409 -msgid "Apps" -msgstr "Applikatiounen" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c4af4073b1d..38880c322a8 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." msgid "Log out" msgstr "Atsijungti" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index a3da13549d0..4eee5422b23 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Vartotojai" #: app.php:409 -msgid "Apps" -msgstr "Programos" - -#: app.php:417 msgid "Admin" msgstr "Administravimas" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index fc072311c2c..b8f0f495883 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Izrakstīties" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automātiskā ierakstīšanās ir noraidīta!" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 276da094bc7..0574a1bf045 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Lietotāji" #: app.php:409 -msgid "Apps" -msgstr "Lietotnes" - -#: app.php:417 msgid "Admin" msgstr "Administratori" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 79646545291..57e187e43f9 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index d874bda2e51..c0f63682991 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Корисници" #: app.php:409 -msgid "Apps" -msgstr "Аппликации" - -#: app.php:417 msgid "Admin" msgstr "Админ" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 1beda2b8444..bdf5f5b96e4 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 8590f74b674..1bbc77ab473 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 6d08651f9eb..89d18a2f097 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Log keluar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 1c115a03272..d6dd5422be9 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Pengguna" #: app.php:409 -msgid "Apps" -msgstr "Aplikasi" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 511c253152a..3c93697074c 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "ယနေ့" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "နှစ် အရင်က" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 2dc174649a1..924312085e5 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "သုံးစွဲသူ" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "အက်ဒမင်" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index f14bb060383..8650127e346 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Logg ut" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk pålogging avvist!" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 9ddd3f5c576..fe342df879d 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Brukere" #: app.php:409 -msgid "Apps" -msgstr "Apper" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 34bd08ae62a..70b0faea8ee 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 5445c8e816c..5ab14347a8f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 99be9d2691c..5ffd342aa8c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,13 +4,14 @@ # # Translators: # André Koot , 2013 +# kwillems , 2013 # Jorcee , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -498,7 +499,7 @@ msgstr "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken." #: templates/installation.php:32 msgid "" @@ -523,7 +524,7 @@ msgstr "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Bekijk de documentatie voor Informatie over het correct configureren van uw server." #: templates/installation.php:47 msgid "Create an admin account" @@ -580,6 +581,10 @@ msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." msgid "Log out" msgstr "Afmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische aanmelding geweigerd!" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cdb43a7072a..e134ee29a6e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Gebruikers" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Beheerder" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index db50c0e88a9..e9f078ccd3e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." msgid "Log out" msgstr "Logg ut" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk innlogging avvist!" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index bcd30436ade..ac9c8a7af06 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Brukarar" #: app.php:409 -msgid "Apps" -msgstr "Program" - -#: app.php:417 msgid "Admin" msgstr "Administrer" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 5a22dd98cc9..3d809055bc4 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Sortida" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 95eaa629e86..b72cc1bad45 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Usancièrs" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f69729c588c..fa5753377a8 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." msgid "Log out" msgstr "Wyloguj" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 54c16bb62d7..f9c3b504b9a 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Użytkownicy" #: app.php:409 -msgid "Apps" -msgstr "Aplikacje" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index fccecc4f3f5..56a2ae37528 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." msgid "Log out" msgstr "Sair" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index bc02483c4b0..6b636c6d004 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 12:30+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" @@ -73,7 +73,7 @@ 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 "" +msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 63261adbfd8..da1ddabb5f1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuários" #: app.php:409 -msgid "Apps" -msgstr "Aplicações" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index e11e0f9854c..645a5d2a2c6 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -582,6 +582,10 @@ msgstr "%s está disponível. Tenha mais informações como actualizar." msgid "Log out" msgstr "Sair" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index df6290845f8..cb7e1b5f825 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Utilizadores" #: app.php:409 -msgid "Apps" -msgstr "Aplicações" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1b3bb503e08..591a3ef6202 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: corneliu.e \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -582,6 +582,10 @@ msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actual msgid "Log out" msgstr "Ieșire" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Autentificare automată respinsă!" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 42f5f30ea38..fe762ac0523 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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,14 +34,10 @@ msgid "Users" msgstr "Utilizatori" #: app.php:409 -msgid "Apps" -msgstr "Aplicații" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b588107d341..41e93a0285a 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -585,6 +585,10 @@ msgstr "%s доступно. Получить дополнительную ин msgid "Log out" msgstr "Выйти" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 5280cba75ed..af10affa540 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Alexander Shashkevych \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Пользователи" #: app.php:409 -msgid "Apps" -msgstr "Приложения" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 596c381bd52..7a36141dc71 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "නික්මීම" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 59d4f49d1ff..1bc00eb43f1 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "පරිශීලකයන්" #: app.php:409 -msgid "Apps" -msgstr "යෙදුම්" - -#: app.php:417 msgid "Admin" msgstr "පරිපාලක" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 2c7327788a3..05527007267 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 9d5bd19be2d..f9b0c216e02 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 306cd201795..b57189088d5 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." msgid "Log out" msgstr "Odhlásiť" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ef108b73c8e..3e9b1b4a3a6 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 19:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Používatelia" #: app.php:409 -msgid "Apps" -msgstr "Aplikácie" - -#: app.php:417 msgid "Admin" msgstr "Administrátor" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 0adf177e229..774bca281d1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index f53916993d2..4ad47a20489 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 08:50+0000\n" +"Last-Translator: barbarak \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" @@ -71,11 +71,11 @@ 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 "" +msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index ce4d7021090..38ca6281664 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Uporabniki" #: app.php:409 -msgid "Apps" -msgstr "Programi" - -#: app.php:417 msgid "Admin" msgstr "Skrbništvo" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index fb2fca5fb77..e38e28341e7 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "Dalje" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Hyrja automatike u refuzua!" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 2a56dcbd7fb..25e3c09b581 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Përdoruesit" #: app.php:409 -msgid "Apps" -msgstr "App" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a2835423789..0f990ed8f6c 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 3f9b8db253a..a418274cae5 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Корисници" #: app.php:409 -msgid "Apps" -msgstr "Апликације" - -#: app.php:417 msgid "Admin" msgstr "Администратор" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 49ce87eb10f..a6d89afb957 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:753 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:754 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:755 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:756 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:757 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:758 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:760 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:761 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:762 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:763 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2218d64277c..5ba85046514 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Korisnici" #: app.php:409 -msgid "Apps" -msgstr "Programi" - -#: app.php:417 msgid "Admin" msgstr "Adninistracija" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 96edceb6219..4edac60fe3a 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -582,6 +582,10 @@ msgstr "%s är tillgänglig. Få mer information om hur du går tillväga för a msgid "Log out" msgstr "Logga ut" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk inloggning inte tillåten!" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index c9d78f13d39..53394af770a 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 12:41+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -74,7 +74,7 @@ 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 "" +msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e889ebc259e..3cbe75628a2 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Användare" #: app.php:409 -msgid "Apps" -msgstr "Program" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 78b1d8f4987..6d9e895375e 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:354 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:814 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:815 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:816 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:817 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:818 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:820 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:821 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:822 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:823 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:825 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:826 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 5f0afb54aba..234a10d9d7a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +253,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index edc3e7168d1..16950f600dc 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "விடுபதிகை செய்க" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index bf7c398a455..783ff8f2259 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "பயனாளர்" #: app.php:409 -msgid "Apps" -msgstr "செயலிகள்" - -#: app.php:417 msgid "Admin" msgstr "நிர்வாகம்" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 29dc5eaa0f5..b295f594858 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "నిష్క్రమించు" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 370f405c284..eabcbd25c2f 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "వాడుకరులు" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b0796ac8e8f..e76fb40cf6f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 88cd6e591db..4dda8383f13 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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_encryption.pot b/l10n/templates/files_encryption.pot index 3a9064c4327..ad03fff3d1b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 1f22eb0b383..c02494770dc 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 c071f7d65d5..e1191ae83a0 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 493571b97c5..63a82b076c9 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 92fd83bea19..287accb7f37 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 4d1067b2f21..cb19a356fd1 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 4a428b98975..96da3d6141f 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 72356b7d732..8d320806c67 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 2ef2a44d6c5..3d2da7d8408 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-11 08:07-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 e719e85d4a1..31137758bb5 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "ออกจากระบบ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 314f740f6bd..b637350ae57 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ผู้ใช้งาน" #: app.php:409 -msgid "Apps" -msgstr "แอปฯ" - -#: app.php:417 msgid "Admin" msgstr "ผู้ดูแล" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index b94e914f035..7ede4abab05 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." msgid "Log out" msgstr "Çıkış yap" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Otomatik oturum açma reddedildi!" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8b7f4d190fe..7528170e9f9 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Kullanıcılar" #: app.php:409 -msgid "Apps" -msgstr "Uygulamalar" - -#: app.php:417 msgid "Admin" msgstr "Yönetici" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 3355bfab96f..94de9a84563 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "تىزىمدىن چىق" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 018931a3d7b..48dee639b00 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ئىشلەتكۈچىلەر" #: app.php:409 -msgid "Apps" -msgstr "ئەپلەر" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 2d8ce3b7969..193731bd184 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "Вихід" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 298b776c921..eea8f3ae20c 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# zubr139 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-10 15:40+0000\n" +"Last-Translator: zubr139 \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" @@ -231,7 +232,7 @@ msgstr "{count} файлів" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s не може бути перейменований" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -329,11 +330,11 @@ msgstr "Поточне сканування" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "каталог" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "каталоги" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 89913155b89..b1abbd6210f 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Користувачі" #: app.php:409 -msgid "Apps" -msgstr "Додатки" - -#: app.php:417 msgid "Admin" msgstr "Адмін" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index d925b8e02d5..4ce8067cefa 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "لاگ آؤٹ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 4347d7f1fa8..ad996c8d728 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "یوزرز" #: app.php:409 -msgid "Apps" -msgstr "ایپز" - -#: app.php:417 msgid "Admin" msgstr "ایڈمن" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 987344f485e..72441fce39d 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -579,6 +579,10 @@ msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." msgid "Log out" msgstr "Đăng xuất" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 8caf92f1aa9..1c48010ea94 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Người dùng" #: app.php:409 -msgid "Apps" -msgstr "Ứng dụng" - -#: app.php:417 msgid "Admin" msgstr "Quản trị" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index edc147a95f2..da50021469e 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Martin Liu \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -581,6 +581,10 @@ msgstr "%s 是可用的。获取更多关于升级的信息。" msgid "Log out" msgstr "注销" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index c540254d9e2..4a5edd4eb90 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "用户" #: app.php:409 -msgid "Apps" -msgstr "程序" - -#: app.php:417 msgid "Admin" msgstr "管理员" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index e740579b2a0..69afa4418f4 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -580,6 +580,10 @@ msgstr "%s 可用。获取更多关于如何升级的信息。" msgid "Log out" msgstr "注销" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 880725f9d90..42595eb834b 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "用户" #: app.php:409 -msgid "Apps" -msgstr "应用" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 6198af2acf8..9ffbcd611bf 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" @@ -578,6 +578,10 @@ msgstr "" msgid "Log out" msgstr "登出" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index a8ac7fdbd81..49bbac659bb 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -34,14 +34,10 @@ msgid "Users" msgstr "用戶" #: app.php:409 -msgid "Apps" -msgstr "軟件" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 9ca958e0d1b..6937d38e06b 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:07+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,6 +580,10 @@ msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" msgid "Log out" msgstr "登出" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒!" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index adb5dfb4f95..e95a387cf3f 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 12:08+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" @@ -35,14 +35,10 @@ msgid "Users" msgstr "使用者" #: app.php:409 -msgid "Apps" -msgstr "應用程式" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index 67353b8fb42..d17df6563bc 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persoonlik", "Settings" => "Instellings", "Users" => "Gebruikers", -"Apps" => "Toepassings", "Admin" => "Admin", "web services under your control" => "webdienste onder jou beheer" ); diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 50881cb627b..ca48fc39f9b 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "شخصي", "Settings" => "إعدادات", "Users" => "المستخدمين", -"Apps" => "التطبيقات", "Admin" => "المدير", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 4a558426a89..a366199235e 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лични", "Settings" => "Настройки", "Users" => "Потребители", -"Apps" => "Приложения", "Admin" => "Админ", "web services under your control" => "уеб услуги под Ваш контрол", "ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 3e1340b3689..2e89f1034f2 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", "Users" => "ব্যবহারকারী", -"Apps" => "অ্যাপ", "Admin" => "প্রশাসন", "web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index a0c7b10e734..bf7c3f8b459 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuració", "Users" => "Usuaris", -"Apps" => "Aplicacions", "Admin" => "Administració", "Failed to upgrade \"%s\"." => "Ha fallat l'actualització \"%s\".", "web services under your control" => "controleu els vostres serveis web", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 354c61f6a12..c0e0ac6a67b 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobní", "Settings" => "Nastavení", "Users" => "Uživatelé", -"Apps" => "Aplikace", "Admin" => "Administrace", "Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", "web services under your control" => "webové služby pod Vaší kontrolou", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 7ba8378cb41..15b54e4cc6e 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personol", "Settings" => "Gosodiadau", "Users" => "Defnyddwyr", -"Apps" => "Pecynnau", "Admin" => "Gweinyddu", "web services under your control" => "gwasanaethau gwe a reolir gennych", "ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index aa5bb74bd31..81650f7eeed 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personligt", "Settings" => "Indstillinger", "Users" => "Brugere", -"Apps" => "Apps", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Upgradering af \"%s\" fejlede", "web services under your control" => "Webtjenester under din kontrol", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 5dcbea4e022..c3bb8912f70 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Deiner Kontrolle", diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 2dbf22b9a7d..d100afef3f9 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Ihrer Kontrolle", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 91731585d48..05cc103c869 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Ihrer Kontrolle", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 9989fc967b1..7433113f810 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", "Users" => "Χρήστες", -"Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", "Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 6ccc2025382..196cdd66900 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persona", "Settings" => "Agordo", "Users" => "Uzantoj", -"Apps" => "Aplikaĵoj", "Admin" => "Administranto", "web services under your control" => "TTT-servoj regataj de vi", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index e30e4d711e7..70dc0c0e92c 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Ajustes", "Users" => "Usuarios", -"Apps" => "Aplicaciones", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", "web services under your control" => "Servicios web bajo su control", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 3f1c098dbf5..6208e3eb472 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuración", "Users" => "Usuarios", -"Apps" => "Apps", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "No se pudo actualizar \"%s\".", "web services under your control" => "servicios web sobre los que tenés control", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 403f0871c53..1dff8545240 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Isiklik", "Settings" => "Seaded", "Users" => "Kasutajad", -"Apps" => "Rakendused", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ebaõnnestunud uuendus \"%s\".", "web services under your control" => "veebitenused sinu kontrolli all", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 0d9a8860a09..006b3941513 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pertsonala", "Settings" => "Ezarpenak", "Users" => "Erabiltzaileak", -"Apps" => "Aplikazioak", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ezin izan da \"%s\" eguneratu.", "web services under your control" => "web zerbitzuak zure kontrolpean", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index fa886531bba..dd313d9d862 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "شخصی", "Settings" => "تنظیمات", "Users" => "کاربران", -"Apps" => " برنامه ها", "Admin" => "مدیر", "web services under your control" => "سرویس های تحت وب در کنترل شما", "ZIP download is turned off." => "دانلود به صورت فشرده غیر فعال است", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 5892a968d5b..7ce9fcaabca 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Henkilökohtainen", "Settings" => "Asetukset", "Users" => "Käyttäjät", -"Apps" => "Sovellukset", "Admin" => "Ylläpitäjä", "web services under your control" => "verkkopalvelut hallinnassasi", "ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 18fbe55270f..48e12f7b20f 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personnel", "Settings" => "Paramètres", "Users" => "Utilisateurs", -"Apps" => "Applications", "Admin" => "Administration", "web services under your control" => "services web sous votre contrôle", "ZIP download is turned off." => "Téléchargement ZIP désactivé.", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index f5cda20e135..77d672e1450 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persoal", "Settings" => "Axustes", "Users" => "Usuarios", -"Apps" => "Aplicativos", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Non foi posíbel anovar «%s».", "web services under your control" => "servizos web baixo o seu control", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index fa597dadea7..8a33cb393fe 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "אישי", "Settings" => "הגדרות", "Users" => "משתמשים", -"Apps" => "יישומים", "Admin" => "מנהל", "web services under your control" => "שירותי רשת תחת השליטה שלך", "ZIP download is turned off." => "הורדת ZIP כבויה", diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index 7986b3b6b7f..efa06eec8a7 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Help" => "सहयोग", "Personal" => "यक्तिगत", "Settings" => "सेटिंग्स", -"Users" => "उपयोगकर्ता", -"Apps" => "Apps" +"Users" => "उपयोगकर्ता" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php index 9c158447729..9223b4c9ccb 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobno", "Settings" => "Postavke", "Users" => "Korisnici", -"Apps" => "Aplikacije", "Admin" => "Administrator", "web services under your control" => "web usluge pod vašom kontrolom", "Authentication error" => "Greška kod autorizacije", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 422c7266680..6231d9c3cab 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Személyes", "Settings" => "Beállítások", "Users" => "Felhasználók", -"Apps" => "Alkalmazások", "Admin" => "Adminsztráció", "Failed to upgrade \"%s\"." => "Sikertelen Frissítés \"%s\".", "web services under your control" => "webszolgáltatások saját kézben", diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 50ebf20c591..a7fee63892b 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configurationes", "Users" => "Usatores", -"Apps" => "Applicationes", "Admin" => "Administration", "web services under your control" => "servicios web sub tu controlo", "Files" => "Files", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 0881f5349bc..d37c8c25493 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pribadi", "Settings" => "Setelan", "Users" => "Pengguna", -"Apps" => "Aplikasi", "Admin" => "Admin", "web services under your control" => "layanan web dalam kontrol Anda", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 5ccb20882ad..b1402f1df49 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Um mig", "Settings" => "Stillingar", "Users" => "Notendur", -"Apps" => "Forrit", "Admin" => "Stjórnun", "web services under your control" => "vefþjónusta undir þinni stjórn", "ZIP download is turned off." => "Slökkt á ZIP niðurhali.", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index c85ba08f4cd..50723eecbbe 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personale", "Settings" => "Impostazioni", "Users" => "Utenti", -"Apps" => "Applicazioni", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Aggiornamento non riuscito \"%s\".", "web services under your control" => "servizi web nelle tue mani", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 716db8706f0..6561343eaee 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "ユーザ", -"Apps" => "アプリ", "Admin" => "管理", "Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", "web services under your control" => "管理下のウェブサービス", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 5001eee0c27..c03cccf1361 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "პირადი", "Settings" => "პარამეტრები", "Users" => "მომხმარებელი", -"Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", "web services under your control" => "web services under your control", "ZIP download is turned off." => "ZIP download–ი გათიშულია", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index c163d8c9fa4..734b6c6a072 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "개인", "Settings" => "설정", "Users" => "사용자", -"Apps" => "앱", "Admin" => "관리자", "web services under your control" => "내가 관리하는 웹 서비스", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 05959b89cff..a2a6e237b99 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Help" => "یارمەتی", "Settings" => "ده‌ستكاری", "Users" => "به‌كارهێنه‌ر", -"Apps" => "به‌رنامه‌كان", "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" ); diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 11552bcce82..84114a6926d 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Perséinlech", "Settings" => "Astellungen", "Users" => "Benotzer", -"Apps" => "Applikatiounen", "Admin" => "Admin", "web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index e35f3bee16b..4aab3f1113d 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Asmeniniai", "Settings" => "Nustatymai", "Users" => "Vartotojai", -"Apps" => "Programos", "Admin" => "Administravimas", "web services under your control" => "jūsų valdomos web paslaugos", "ZIP download is turned off." => "ZIP atsisiuntimo galimybė yra išjungta.", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 0dfaf6b6780..38cf55549dd 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personīgi", "Settings" => "Iestatījumi", "Users" => "Lietotāji", -"Apps" => "Lietotnes", "Admin" => "Administratori", "web services under your control" => "tīmekļa servisi tavā varā", "ZIP download is turned off." => "ZIP lejupielādēšana ir izslēgta.", diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index eeece35ea6d..e4a6afef492 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лично", "Settings" => "Подесувања", "Users" => "Корисници", -"Apps" => "Аппликации", "Admin" => "Админ", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 5de0eb95991..be7d626ccb7 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Peribadi", "Settings" => "Tetapan", "Users" => "Pengguna", -"Apps" => "Aplikasi", "Admin" => "Admin", "web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Authentication error" => "Ralat pengesahan", diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index 731aa33d576..613b58a87cc 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Help" => "အကူအညီ", "Users" => "သုံးစွဲသူ", -"Apps" => "Apps", "Admin" => "အက်ဒမင်", "web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "ZIP download is turned off." => "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်", diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 42a43bfd98f..dbc0788f4b0 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personlig", "Settings" => "Innstillinger", "Users" => "Brukere", -"Apps" => "Apper", "Admin" => "Admin", "web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 8983aa81bfd..6f8d01f5943 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persoonlijk", "Settings" => "Instellingen", "Users" => "Gebruikers", -"Apps" => "Apps", "Admin" => "Beheerder", "Failed to upgrade \"%s\"." => "Upgrade \"%s\" mislukt.", "web services under your control" => "Webdiensten in eigen beheer", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 3cbd0159bc2..712b1e42375 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personleg", "Settings" => "Innstillingar", "Users" => "Brukarar", -"Apps" => "Program", "Admin" => "Administrer", "web services under your control" => "Vev tjenester under din kontroll", "Authentication error" => "Feil i autentisering", diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index 6f0645bf77a..be7f3b43a2d 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuracion", "Users" => "Usancièrs", -"Apps" => "Apps", "Admin" => "Admin", "web services under your control" => "Services web jos ton contraròtle", "ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bd24614751a..ff75eca6683 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobiste", "Settings" => "Ustawienia", "Users" => "Użytkownicy", -"Apps" => "Aplikacje", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Błąd przy aktualizacji \"%s\".", "web services under your control" => "Kontrolowane serwisy", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index cae6107b9e8..fa7dd092519 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pessoal", "Settings" => "Ajustes", "Users" => "Usuários", -"Apps" => "Aplicações", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Falha na atualização de \"%s\".", "web services under your control" => "serviços web sob seu controle", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index cb8bc99096c..9411df0be3a 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pessoal", "Settings" => "Configurações", "Users" => "Utilizadores", -"Apps" => "Aplicações", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "A actualização \"%s\" falhou.", "web services under your control" => "serviços web sob o seu controlo", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 006e97ed865..f56ee7323f5 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Setări", "Users" => "Utilizatori", -"Apps" => "Aplicații", "Admin" => "Admin", "web services under your control" => "servicii web controlate de tine", "ZIP download is turned off." => "Descărcarea ZIP este dezactivată.", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 544f9c9b809..469acb0a1f0 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Личное", "Settings" => "Конфигурация", "Users" => "Пользователи", -"Apps" => "Приложения", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Не смог обновить \"%s\".", "web services under your control" => "веб-сервисы под вашим управлением", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 36e7b19ba97..f09dee7c6cc 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "පෞද්ගලික", "Settings" => "සිටුවම්", "Users" => "පරිශීලකයන්", -"Apps" => "යෙදුම්", "Admin" => "පරිපාලක", "web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "ZIP download is turned off." => "ZIP භාගත කිරීම් අක්‍රියයි", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 93699439ee2..a3e6a17aaac 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobné", "Settings" => "Nastavenia", "Users" => "Používatelia", -"Apps" => "Aplikácie", "Admin" => "Administrátor", "Failed to upgrade \"%s\"." => "Zlyhala aktualizácia \"%s\".", "web services under your control" => "webové služby pod Vašou kontrolou", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index bffc6d5929b..4423155fd95 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osebno", "Settings" => "Nastavitve", "Users" => "Uporabniki", -"Apps" => "Programi", "Admin" => "Skrbništvo", "web services under your control" => "spletne storitve pod vašim nadzorom", "ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 9a332bc671e..7a51b99c2be 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personale", "Settings" => "Parametra", "Users" => "Përdoruesit", -"Apps" => "App", "Admin" => "Admin", "web services under your control" => "shërbime web nën kontrollin tënd", "ZIP download is turned off." => "Shkarimi i skedarëve ZIP është i çaktivizuar.", diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index a42df978b4d..96dec30124d 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лично", "Settings" => "Поставке", "Users" => "Корисници", -"Apps" => "Апликације", "Admin" => "Администратор", "web services under your control" => "веб сервиси под контролом", "ZIP download is turned off." => "Преузимање ZIP-а је искључено.", diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php index a0c46c2487b..1bfa1f0126f 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Lično", "Settings" => "Podešavanja", "Users" => "Korisnici", -"Apps" => "Programi", "Admin" => "Adninistracija", "Authentication error" => "Greška pri autentifikaciji", "Files" => "Fajlovi", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 72e2d18654a..36fd9b4d7b9 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personligt", "Settings" => "Inställningar", "Users" => "Användare", -"Apps" => "Program", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Misslyckades med att uppgradera \"%s\".", "web services under your control" => "webbtjänster under din kontroll", diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php index 88b9de5f7d1..4a7dd922f85 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "தனிப்பட்ட", "Settings" => "அமைப்புகள்", "Users" => "பயனாளர்", -"Apps" => "செயலிகள்", "Admin" => "நிர்வாகம்", "web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "ZIP download is turned off." => "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது.", diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 25c2d8f1f2a..6d939c4588d 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "ส่วนตัว", "Settings" => "ตั้งค่า", "Users" => "ผู้ใช้งาน", -"Apps" => "แอปฯ", "Admin" => "ผู้ดูแล", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "ZIP download is turned off." => "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 233b99e6373..c3fc70c798c 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Kişisel", "Settings" => "Ayarlar", "Users" => "Kullanıcılar", -"Apps" => "Uygulamalar", "Admin" => "Yönetici", "web services under your control" => "Bilgileriniz güvenli ve şifreli", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index cf460cd3024..89d01c4a157 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "شەخسىي", "Settings" => "تەڭشەكلەر", "Users" => "ئىشلەتكۈچىلەر", -"Apps" => "ئەپلەر", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", "Files" => "ھۆججەتلەر", "Text" => "قىسقا ئۇچۇر", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index c52aa5dfc77..93b1a005a23 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Особисте", "Settings" => "Налаштування", "Users" => "Користувачі", -"Apps" => "Додатки", "Admin" => "Адмін", "web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 57f77d46059..b98310070e4 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "ذاتی", "Settings" => "سیٹینگز", "Users" => "یوزرز", -"Apps" => "ایپز", "Admin" => "ایڈمن", "web services under your control" => "آپ کے اختیار میں ویب سروسیز" ); diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index c3ec50b41f9..82ecc0fa47a 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Cá nhân", "Settings" => "Cài đặt", "Users" => "Người dùng", -"Apps" => "Ứng dụng", "Admin" => "Quản trị", "web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "ZIP download is turned off." => "Tải về ZIP đã bị tắt.", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 9d7237bd198..3433bdc35b5 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "私人", "Settings" => "设置", "Users" => "用户", -"Apps" => "程序", "Admin" => "管理员", "web services under your control" => "您控制的网络服务", "ZIP download is turned off." => "ZIP 下载已关闭", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 4469f0fb1e4..c71a1030d8f 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "个人", "Settings" => "设置", "Users" => "用户", -"Apps" => "应用", "Admin" => "管理", "web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index f5fc48366ff..d6a8e217b57 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "用戶", -"Apps" => "軟件", "Admin" => "管理", "Files" => "文件", "Text" => "文字", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 81b66b93296..d215995e307 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "使用者", -"Apps" => "應用程式", "Admin" => "管理", "web services under your control" => "由您控制的網路服務", "ZIP download is turned off." => "ZIP 下載已關閉。", -- GitLab From 1877a42a0dead02b7593f2b3166583106f32acb0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 12 Aug 2013 15:37:15 +0200 Subject: [PATCH 151/164] Scanner: additional tests for reusing etags during scanning --- tests/lib/files/cache/scanner.php | 18 ++++++++ tests/lib/files/utils/scanner.php | 74 +++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 tests/lib/files/utils/scanner.php diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 263ceadccc7..f6deb93a49e 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -143,6 +143,24 @@ class Scanner extends \PHPUnit_Framework_TestCase { $newData = $this->cache->get(''); $this->assertEquals($oldData['etag'], $newData['etag']); $this->assertEquals(-1, $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE); + $oldData = $this->cache->get(''); + $this->assertNotEquals(-1, $oldData['size']); + $this->scanner->scanFile('', \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); } public function testRemovedFile() { diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php new file mode 100644 index 00000000000..a021d215ae5 --- /dev/null +++ b/tests/lib/files/utils/scanner.php @@ -0,0 +1,74 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Utils; + +use OC\Files\Mount\Mount; +use OC\Files\Storage\Temporary; + +class TestScanner extends \OC\Files\Utils\Scanner { + /** + * @var \OC\Files\Mount\Mount[] $mounts + */ + private $mounts = array(); + + /** + * @param \OC\Files\Mount\Mount $mount + */ + public function addMount($mount) { + $this->mounts[] = $mount; + } + + protected function getMounts($dir) { + return $this->mounts; + } +} + +class Scanner extends \PHPUnit_Framework_TestCase { + public function testReuseExistingRoot() { + $storage = new Temporary(array()); + $mount = new Mount($storage, ''); + $cache = $storage->getCache(); + + $storage->mkdir('folder'); + $storage->file_put_contents('foo.txt', 'qwerty'); + $storage->file_put_contents('folder/bar.txt', 'qwerty'); + + $scanner = new TestScanner(''); + $scanner->addMount($mount); + + $scanner->scan(''); + $this->assertTrue($cache->inCache('folder/bar.txt')); + $oldRoot = $cache->get(''); + + $scanner->scan(''); + $newRoot = $cache->get(''); + $this->assertEquals($oldRoot, $newRoot); + } + + public function testReuseExistingFile() { + $storage = new Temporary(array()); + $mount = new Mount($storage, ''); + $cache = $storage->getCache(); + + $storage->mkdir('folder'); + $storage->file_put_contents('foo.txt', 'qwerty'); + $storage->file_put_contents('folder/bar.txt', 'qwerty'); + + $scanner = new TestScanner(''); + $scanner->addMount($mount); + + $scanner->scan(''); + $this->assertTrue($cache->inCache('folder/bar.txt')); + $old = $cache->get('folder/bar.txt'); + + $scanner->scan(''); + $new = $cache->get('folder/bar.txt'); + $this->assertEquals($old, $new); + } +} -- GitLab From f22719b1eed9a66dc8978bc81b4bf9778834ca4d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 12 Aug 2013 15:37:39 +0200 Subject: [PATCH 152/164] Scanner: correctly pass trough reuse options when doing a recursive scan --- lib/files/cache/scanner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index adecc2bb901..597eabecf54 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -184,7 +184,7 @@ class Scanner extends BasicEmitter { } \OC_DB::commit(); foreach ($childQueue as $child) { - $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE); + $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE, $reuse); if ($childSize === -1) { $size = -1; } else { -- GitLab From eb0fdc838015c794641d6630eb64ff9e1c2a47a4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 12 Aug 2013 17:38:57 +0200 Subject: [PATCH 153/164] provide correct path for require_once --- apps/files_encryption/files/error.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index f93c67d920a..afe604f8ecb 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,6 +1,6 @@ Date: Tue, 13 Aug 2013 09:13:11 -0400 Subject: [PATCH 154/164] [tx-robot] updated from transifex --- apps/files_encryption/l10n/et_EE.php | 2 ++ apps/files_encryption/l10n/nl.php | 2 ++ apps/files_encryption/l10n/pl.php | 4 ++++ apps/files_sharing/l10n/et_EE.php | 6 ++++++ apps/files_sharing/l10n/nl.php | 6 ++++++ apps/files_trashbin/l10n/et_EE.php | 1 + apps/files_versions/l10n/es.php | 3 +++ apps/files_versions/l10n/et_EE.php | 3 +++ apps/user_ldap/l10n/es.php | 5 +++-- apps/user_ldap/l10n/et_EE.php | 8 ++++++++ apps/user_ldap/l10n/ja_JP.php | 6 ++++++ apps/user_ldap/l10n/nl.php | 1 + apps/user_webdavauth/l10n/es.php | 4 +++- apps/user_webdavauth/l10n/et_EE.php | 4 +++- core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/et_EE.php | 1 + core/l10n/fi_FI.php | 1 + core/l10n/gl.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/nl.php | 1 + core/l10n/pl.php | 1 + core/l10n/pt_BR.php | 1 + l10n/de/core.po | 8 ++++---- l10n/de_DE/core.po | 8 ++++---- l10n/es/files_versions.po | 13 +++++++------ l10n/es/user_ldap.po | 13 +++++++------ l10n/es/user_webdavauth.po | 11 ++++++----- l10n/et_EE/core.po | 8 ++++---- l10n/et_EE/files_encryption.po | 10 +++++----- l10n/et_EE/files_sharing.po | 19 ++++++++++--------- l10n/et_EE/files_trashbin.po | 9 +++++---- l10n/et_EE/files_versions.po | 13 +++++++------ l10n/et_EE/user_ldap.po | 22 +++++++++++----------- l10n/et_EE/user_webdavauth.po | 10 +++++----- l10n/fi_FI/core.po | 8 ++++---- l10n/gl/core.po | 8 ++++---- l10n/ja_JP/core.po | 8 ++++---- l10n/ja_JP/user_ldap.po | 18 +++++++++--------- l10n/nl/core.po | 8 ++++---- l10n/nl/files_encryption.po | 10 +++++----- l10n/nl/files_sharing.po | 19 ++++++++++--------- l10n/nl/settings.po | 16 ++++++++-------- l10n/nl/user_ldap.po | 6 +++--- l10n/pl/core.po | 8 ++++---- l10n/pl/files_encryption.po | 14 +++++++------- l10n/pl/settings.po | 8 ++++---- l10n/pt_BR/core.po | 8 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/nl.php | 6 ++++++ settings/l10n/pl.php | 2 ++ 61 files changed, 224 insertions(+), 153 deletions(-) diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index fd36a6fb9d6..3edb7299c20 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Missing requirements." => "Nõutavad on puudu.", +"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." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", +"Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", "You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 8a94b806ac4..e37ccf54d6d 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.", "Missing requirements." => "Missende benodigdheden.", +"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." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", +"Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 66c06c60882..ca4502ff6aa 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,6 +8,10 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", +"Missing requirements." => "Brak wymagań.", +"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." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", +"Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 6de17591cbc..fe230902ff1 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -3,6 +3,12 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Submit" => "Saada", +"Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", +"Reasons might be:" => "Põhjused võivad olla:", +"the item was removed" => "üksus on eemaldatud", +"the link expired" => "link on aegunud", +"sharing is disabled" => "jagamine on peatatud", +"For more info, please ask the person who sent this link." => "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole.", "%s shared the folder %s with you" => "%s jagas sinuga kausta %s", "%s shared the file %s with you" => "%s jagas sinuga faili %s", "Download" => "Lae alla", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index c8f3e8e89e9..9c46a1ab4b3 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -3,6 +3,12 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", "Submit" => "Verzenden", +"Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.", +"Reasons might be:" => "Redenen kunnen zijn:", +"the item was removed" => "bestand was verwijderd", +"the link expired" => "de link is verlopen", +"sharing is disabled" => "delen is uitgeschakeld", +"For more info, please ask the person who sent this link." => "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.", "%s shared the folder %s with you" => "%s deelt de map %s met u", "%s shared the file %s with you" => "%s deelt het bestand %s met u", "Download" => "Downloaden", diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 36060b16282..293d639b42f 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "{count} folders" => "{count} kausta", "1 file" => "1 fail", "{count} files" => "{count} faili", +"restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", "Restore" => "Taasta", "Delete" => "Kustuta", diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index c87488bf7a9..a6031698e06 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "No se puede revertir: %s", "Versions" => "Revisiones", +"Failed to revert {file} to revision {timestamp}." => "No se ha podido revertir {archivo} a revisión {timestamp}.", +"More versions..." => "Más...", +"No other versions available" => "No hay otras versiones disponibles", "Restore" => "Recuperar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index 73a60ade7cf..ba8b516e856 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "Ei suuda taastada faili: %s", "Versions" => "Versioonid", +"Failed to revert {file} to revision {timestamp}." => "Ebaõnnestus faili {file} taastamine revisjonile {timestamp}", +"More versions..." => "Rohkem versioone...", +"No other versions available" => "Muid versioone pole saadaval", "Restore" => "Taasta" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 29f47ced437..ca59e2f3ead 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -2,12 +2,12 @@ $TRANSLATIONS = array( "Failed to clear the mappings." => "Ocurrió un fallo al borrar las asignaciones.", "Failed to delete the server configuration" => "No se pudo borrar la configuración del servidor", -"The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión puede establecerse!", +"The configuration is valid and the connection could be established!" => "¡La configuración es válida y la conexión puede establecerse!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales.", "The configuration is invalid. Please look in the ownCloud log for further details." => "La configuración no es válida. Por favor, busque en el log de ownCloud para más detalles.", "Deletion failed" => "Falló el borrado", "Take over settings from recent server configuration?" => "¿Asumir los ajustes actuales de la configuración del servidor?", -"Keep settings?" => "Mantener la configuración?", +"Keep settings?" => "¿Mantener la configuración?", "Cannot add server configuration" => "No se puede añadir la configuración del servidor", "mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "No lo use para conexiones LDAPS, Fallará.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Si la conexión funciona sólo con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "Cache Time-To-Live" => "Cache TTL", "in seconds. A change empties the cache." => "en segundos. Un cambio vacía la caché.", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 09e1a13f03c..f97a1ad7406 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Connection test failed" => "Ühenduse testimine ebaõnnestus", "Do you really want to delete the current Server Configuration?" => "Oled kindel, et tahad kustutada praegust serveri seadistust?", "Confirm Deletion" => "Kinnita kustutamine", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.", "Server configuration" => "Serveri seadistus", "Add Server Configuration" => "Lisa serveri seadistus", @@ -45,20 +46,24 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga.", "Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", +"Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", "Use TLS" => "Kasuta TLS-i", "Do not use it additionally for LDAPS connections, it will fail." => "LDAPS puhul ära kasuta. Ühendus ei toimi.", "Case insensitve LDAP server (Windows)" => "Mittetõstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.", "Not recommended, use for testing only." => "Pole soovitatav, kasuta ainult testimiseks.", "Cache Time-To-Live" => "Puhvri iga", "in seconds. A change empties the cache." => "sekundites. Muudatus tühjendab vahemälu.", "Directory Settings" => "Kataloogi seaded", "User Display Name Field" => "Kasutaja näidatava nime väli", +"The LDAP attribute to use to generate the user's display name." => "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks.", "Base User Tree" => "Baaskasutaja puu", "One User Base DN per line" => "Üks kasutajate baas-DN rea kohta", "User Search Attributes" => "Kasutaja otsingu atribuudid", "Optional; one attribute per line" => "Valikuline; üks atribuut rea kohta", "Group Display Name Field" => "Grupi näidatava nime väli", +"The LDAP attribute to use to generate the groups's display name." => "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava nime loomiseks.", "Base Group Tree" => "Baasgrupi puu", "One Group Base DN per line" => "Üks grupi baas-DN rea kohta", "Group Search Attributes" => "Grupi otsingu atribuudid", @@ -71,10 +76,13 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "Kasutaja kodukataloogi nimetamise reegel", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus.", "Internal Username" => "Sisemine kasutajanimi", +"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." => "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", "Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:", "Override UUID detection" => "Tühista UUID tuvastus", +"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." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", "UUID Attribute:" => "UUID atribuut:", "Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus", +"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." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.", "Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Groupname-LDAP Group Mapping" => "Puhasta LDAP-Grupinimi Grupp Vastendus", "Test Configuration" => "Testi seadistust", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 03ed2e9db96..d87a0f065b3 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -51,16 +51,19 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "LDAPS接続のために追加でそれを利用しないで下さい。失敗します。", "Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバ(Windows)", "Turn off SSL certificate validation." => "SSL証明書の確認を無効にする。", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書を %s サーバにインポートしてください。", "Not recommended, use for testing only." => "推奨しません、テスト目的でのみ利用してください。", "Cache Time-To-Live" => "キャッシュのTTL", "in seconds. A change empties the cache." => "秒。変更後にキャッシュがクリアされます。", "Directory Settings" => "ディレクトリ設定", "User Display Name Field" => "ユーザ表示名のフィールド", +"The LDAP attribute to use to generate the user's display name." => "ユーザの表示名の生成に利用するLDAP属性", "Base User Tree" => "ベースユーザツリー", "One User Base DN per line" => "1行に1つのユーザベースDN", "User Search Attributes" => "ユーザ検索属性", "Optional; one attribute per line" => "オプション:1行に1属性", "Group Display Name Field" => "グループ表示名のフィールド", +"The LDAP attribute to use to generate the groups's display name." => "ユーザのグループ表示名の生成に利用するLDAP属性", "Base Group Tree" => "ベースグループツリー", "One Group Base DN per line" => "1行に1つのグループベースDN", "Group Search Attributes" => "グループ検索属性", @@ -73,10 +76,13 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "ユーザのホームフォルダ命名規則", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。", "Internal Username" => "内部ユーザ名", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. 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." => "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。", "Internal Username Attribute:" => "内部ユーザ名属性:", "Override UUID detection" => "UUID検出を再定義する", +"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." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", "UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", +"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." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", "Clear Groupname-LDAP Group Mapping" => "グループ名とLDAPグループのマッピングをクリアする", "Test Configuration" => "設定をテスト", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index dda46a386d6..1a67cd409dc 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Connection test failed" => "Verbindingstest mislukt", "Do you really want to delete the current Server Configuration?" => "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?", "Confirm Deletion" => "Bevestig verwijderen", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren.", "Server configuration" => "Serverconfiguratie", "Add Server Configuration" => "Toevoegen serverconfiguratie", diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 608b0ad8179..cd8ec6659a4 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,5 +1,7 @@ "Autenticación de WevDAV" +"WebDAV Authentication" => "Autenticación de WevDAV", +"Address: " => "Dirección:", +"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." => "onwCloud enviará las credenciales de usuario a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index a8d26e26bbd..34b07c654a5 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,5 +1,7 @@ "WebDAV autentimine" +"WebDAV Authentication" => "WebDAV autentimine", +"Address: " => "Aadress:", +"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." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de.php b/core/l10n/de.php index a3acaf4ae05..15847370f92 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Weitere Anwendungen", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 48d193fb22f..e019bf4e8ff 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Weitere Anwendungen", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index da9c0d3609a..0bc121d21fb 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Lõpeta seadistamine", "%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.", "Log out" => "Logi välja", +"More apps" => "Rohkem rakendusi", "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", "If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!", "Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 27eab100870..e6da2c28201 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -122,6 +122,7 @@ $TRANSLATIONS = array( "Finish setup" => "Viimeistele asennus", "%s is available. Get more information on how to update." => "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan.", "Log out" => "Kirjaudu ulos", +"More apps" => "Lisää sovelluksia", "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", "If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.", "Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 08172a14bc0..1c51d8443a3 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Rematar a configuración", "%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.", "Log out" => "Desconectar", +"More apps" => "Máis aplicativos", "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", "Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 235790d6e52..96185dbb116 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "セットアップを完了します", "%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。", "Log out" => "ログアウト", +"More apps" => "他のアプリ", "Automatic logon rejected!" => "自動ログインは拒否されました!", "If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。", "Please change your password to secure your account again." => "アカウント保護の為、パスワードを再度の変更をお願いいたします。", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index d18be201622..019e539b281 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installatie afronden", "%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", +"More apps" => "Meer applicaties", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!", "Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 872e621908e..1794519c293 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Zakończ konfigurowanie", "%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.", "Log out" => "Wyloguj", +"More apps" => "Więcej aplikacji", "Automatic logon rejected!" => "Automatyczne logowanie odrzucone!", "If you did not change your password recently, your account may be compromised!" => "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!", "Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index eb201e7fb63..5014bca70e9 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -129,6 +129,7 @@ $TRANSLATIONS = array( "Finish setup" => "Concluir configuração", "%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.", "Log out" => "Sair", +"More apps" => "Mais aplicativos", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", "Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.", diff --git a/l10n/de/core.po b/l10n/de/core.po index 02304632099..b3c2ddb1bef 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-11 15:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -587,7 +587,7 @@ msgstr "Abmelden" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Weitere Anwendungen" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 930d7095624..081129c614e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-11 15:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -586,7 +586,7 @@ msgstr "Abmelden" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Weitere Anwendungen" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 7306fcc13c8..2c3194d6870 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rodrigo Rodríguez , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 05:50+0000\n" +"Last-Translator: Rodrigo Rodríguez \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" @@ -28,15 +29,15 @@ msgstr "Revisiones" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Más..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "No hay otras versiones disponibles" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 1fb1c6df324..edabac064f8 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -5,14 +5,15 @@ # Translators: # Agustin Ferrario , 2013 # ordenet , 2013 +# Rodrigo Rodríguez , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 06:00+0000\n" +"Last-Translator: Rodrigo Rodríguez \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" @@ -30,7 +31,7 @@ msgstr "No se pudo borrar la configuración del servidor" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuración es válida y la conexión puede establecerse!" +msgstr "¡La configuración es válida y la conexión puede establecerse!" #: ajax/testConfiguration.php:39 msgid "" @@ -54,7 +55,7 @@ msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Mantener la configuración?" +msgstr "¿Mantener la configuración?" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -248,7 +249,7 @@ msgstr "Apagar la validación por certificado SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Si la conexión funciona sólo con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index ddd6637a935..b880f91c7a9 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -6,14 +6,15 @@ # Agustin Ferrario , 2013 # Art O. Pal , 2012 # pggx999 , 2012 +# Rodrigo Rodríguez , 2013 # saskarip , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 05:50+0000\n" +"Last-Translator: Rodrigo Rodríguez \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" @@ -27,11 +28,11 @@ msgstr "Autenticación de WevDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Dirección:" #: templates/settings.php:7 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 "" +msgstr "onwCloud enviará las credenciales de usuario a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 88060078299..388afd742f4 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:00+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" @@ -582,7 +582,7 @@ msgstr "Logi välja" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Rohkem rakendusi" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index d1ddbdb93fd..f39cbd36408 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:10+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" @@ -72,11 +72,11 @@ 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 "" +msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0eb4a12a9d8..f45b12c52bb 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:50+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" @@ -32,27 +33,27 @@ msgstr "Saada" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Vabandust, see link ei tundu enam toimivat." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Põhjused võivad olla:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "üksus on eemaldatud" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "link on aegunud" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "jagamine on peatatud" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." #: templates/public.php:15 #, php-format diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 40067e9eb16..7fc9276bc8e 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:10+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" @@ -69,7 +70,7 @@ msgstr "{count} faili" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "taastatud" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index b8e03a31424..cfb0bfca4a3 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+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" @@ -29,15 +30,15 @@ msgstr "Versioonid" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Ebaõnnestus faili {file} taastamine revisjonile {timestamp}" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Rohkem versioone..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Muid versioone pole saadaval" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 7604805be09..429359f138b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:00+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" @@ -92,7 +92,7 @@ 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 "" +msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." #: templates/settings.php:12 msgid "" @@ -224,7 +224,7 @@ msgstr "Ära kasuta peaserverit" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:76 msgid "Use TLS" @@ -247,7 +247,7 @@ msgstr "Lülita SSL sertifikaadi kontrollimine välja." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +271,7 @@ msgstr "Kasutaja näidatava nime väli" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks." #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +295,7 @@ msgstr "Grupi näidatava nime väli" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava nime loomiseks." #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +361,7 @@ msgid "" "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 "" +msgstr "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +380,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +402,7 @@ msgid "" " 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 "" +msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 9acee7ab2cc..575c051d6aa 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+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" @@ -25,11 +25,11 @@ msgstr "WebDAV autentimine" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Aadress:" #: templates/settings.php:7 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 "" +msgstr "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index d6731b11ed1..bd4edb94e26 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-11 17:00+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" @@ -581,7 +581,7 @@ msgstr "Kirjaudu ulos" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Lisää sovelluksia" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 893b8b10288..4c35dd27339 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 06:50+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" @@ -581,7 +581,7 @@ msgstr "Desconectar" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Máis aplicativos" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 392cfcec0fe..143f10d687a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 04:30+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -583,7 +583,7 @@ msgstr "ログアウト" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "他のアプリ" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 40aad3dd563..294bcdd8cc2 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 04:30+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -247,7 +247,7 @@ msgstr "SSL証明書の確認を無効にする。" msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書を %s サーバにインポートしてください。" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +271,7 @@ msgstr "ユーザ表示名のフィールド" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "ユーザの表示名の生成に利用するLDAP属性" #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +295,7 @@ msgstr "グループ表示名のフィールド" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +361,7 @@ msgid "" "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 "" +msgstr "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +380,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +402,7 @@ msgid "" " 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 "" +msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 5ffd342aa8c..6e4e157eec2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-11 18:50+0000\n" +"Last-Translator: kwillems \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" @@ -583,7 +583,7 @@ msgstr "Afmelden" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Meer applicaties" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 21aadb194f1..67a24bf1ac1 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+0000\n" +"Last-Translator: Len \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" @@ -72,11 +72,11 @@ 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 "" +msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index e0c421cf232..cf2ebc5ccc0 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # André Koot , 2013 +# Len , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:20+0000\n" +"Last-Translator: Len \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" @@ -32,27 +33,27 @@ msgstr "Verzenden" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Redenen kunnen zijn:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "bestand was verwijderd" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "de link is verlopen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "delen is uitgeschakeld" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." #: templates/public.php:15 #, php-format diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index afacadbe8a3..f2b74b11fb0 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:30+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -198,7 +198,7 @@ msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omda #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Conntroleer de installatie handleiding goed." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -247,11 +247,11 @@ msgstr "Bij laden van elke pagina één taak uitvoeren" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen." #: templates/admin.php:128 msgid "Sharing" @@ -280,7 +280,7 @@ msgstr "Sta publieke uploads toe" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" #: templates/admin.php:160 msgid "Allow resharing" @@ -309,14 +309,14 @@ msgstr "Afdwingen HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." #: templates/admin.php:211 msgid "Log" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 3409fb6860d..cea243ef797 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:20+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ 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 "" +msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." #: templates/settings.php:12 msgid "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index fa5753377a8..93e154f91b1 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 11:30+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -582,7 +582,7 @@ msgstr "Wyloguj" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Więcej aplikacji" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 83b17801f26..4c116aa6800 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 11:50+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,22 +60,22 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Brak wymagań." #: hooks/hooks.php:45 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 "" +msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ccbbcd75396..66939daefc5 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 12:00+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożl #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Proszę sprawdź ponownie przewodnik instalacji." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -308,7 +308,7 @@ msgstr "Wymuś HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." #: templates/admin.php:199 #, php-format diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 56a2ae37528..1e89128a123 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-11 14:50+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" @@ -582,7 +582,7 @@ msgstr "Sair" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Mais aplicativos" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e76fb40cf6f..7b4ed939094 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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.pot b/l10n/templates/files.pot index 4dda8383f13..b019dcaf2ea 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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_encryption.pot b/l10n/templates/files_encryption.pot index ad03fff3d1b..ccae79eeea5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 c02494770dc..74b7c5caec2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 e1191ae83a0..a60fec60e8a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 63a82b076c9..a7e74b2c341 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 287accb7f37..b0a436cacda 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 cb19a356fd1..50f5fe1c07a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 96da3d6141f..ab7005ac058 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 8d320806c67..45319f508c2 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-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 3d2da7d8408..1e3b3f5885a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index d777a688c18..67ddafdc3c5 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -40,24 +40,30 @@ $TRANSLATIONS = array( "Security Warning" => "Beveiligingswaarschuwing", "Setup Warning" => "Instellingswaarschuwing", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", +"Please double check the installation guides." => "Conntroleer de installatie handleiding goed.", "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", "Locale not working" => "Taalbestand werkt niet", "Internet connection not working" => "Internet verbinding werkt niet", "Cron" => "Cron", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http.", +"Use systems cron service to call the cron.php file once a minute." => "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen.", "Sharing" => "Delen", "Enable Share API" => "Activeren Share API", "Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken", "Allow links" => "Toestaan links", "Allow users to share items to the public with links" => "Toestaan dat gebruikers objecten met links delen met anderen", "Allow public uploads" => "Sta publieke uploads toe", +"Allow users to enable others to upload into their publicly shared folders" => "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden", "Allow resharing" => "Toestaan opnieuw delen", "Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen", "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", "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", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen.", "Log" => "Log", "Log level" => "Log niveau", "More" => "Meer", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 21deabd5134..2c4990b285d 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -40,6 +40,7 @@ $TRANSLATIONS = array( "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Setup Warning" => "Ostrzeżenia konfiguracji", "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." => "Proszę sprawdź ponownie przewodnik instalacji.", "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", "Locale not working" => "Lokalizacja nie działa", @@ -58,6 +59,7 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "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.", "Log" => "Logi", "Log level" => "Poziom logów", "More" => "Więcej", -- GitLab From 5660f99592b313e423c0b7d9682dacb1896ce102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 13 Aug 2013 22:58:27 +0200 Subject: [PATCH 155/164] add PERMISSIONS_ALL summary --- core/js/js.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/js/js.js b/core/js/js.js index 1d1711383f7..64b5556987d 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -157,6 +157,7 @@ var OC={ PERMISSION_UPDATE:2, PERMISSION_DELETE:8, PERMISSION_SHARE:16, + PERMISSION_ALL:31, webroot:oc_webroot, appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, -- GitLab From ca95a475d5fa81f3b3a8b5dcbce87189b79fc56e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 13 Aug 2013 22:58:47 +0200 Subject: [PATCH 156/164] use edit & reshare permission as default --- core/js/share.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index b4b5159b0b5..622b23d05a2 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -256,8 +256,8 @@ OC.Share={ var shareType = selected.item.value.shareType; var shareWith = selected.item.value.shareWith; $(this).val(shareWith); - // Default permissions are Read and Share - var permissions = OC.PERMISSION_READ | OC.PERMISSION_SHARE; + // Default permissions are Edit and Share (all) + var permissions = OC.PERMISSION_ALL; OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() { OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions); $('#shareWith').val(''); -- GitLab From 11a404b90b8676cd38b1f6dbfbc7ca074f9a31ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 14 Aug 2013 00:25:07 +0200 Subject: [PATCH 157/164] comment clarification --- core/js/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 622b23d05a2..a0ae39fffed 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -256,7 +256,7 @@ OC.Share={ var shareType = selected.item.value.shareType; var shareWith = selected.item.value.shareWith; $(this).val(shareWith); - // Default permissions are Edit and Share (all) + // Default permissions are Edit (CRUD) and Share var permissions = OC.PERMISSION_ALL; OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() { OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions); -- GitLab From 400249194726e7cf6fc79d5fe7e92ccca8539244 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 14 Aug 2013 06:29:19 +0200 Subject: [PATCH 158/164] Reword a phrase --- apps/files/js/filelist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e0c72295702..f7cc3767b25 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -452,7 +452,7 @@ $(document).ready(function(){ var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads += 1; uploadtext.attr('currentUploads', currentUploads); - var translatedText = n('files', '%n file uploading', '%n files uploading', currentUploads); + var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads); if(currentUploads === 1) { var img = OC.imagePath('core', 'loading.gif'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); -- GitLab From 7d0e9cc685821c86d42a48ab7197e969c365a975 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 14 Aug 2013 17:15:01 +0200 Subject: [PATCH 159/164] use __DIR__ instead of realpath --- apps/files_encryption/files/error.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index afe604f8ecb..2dd27257abe 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,6 +1,6 @@ Date: Thu, 15 Aug 2013 04:53:54 -0400 Subject: [PATCH 160/164] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 8 +-- apps/files/l10n/bg_BG.php | 7 +-- apps/files/l10n/bn_BD.php | 8 +-- apps/files/l10n/ca.php | 8 +-- apps/files/l10n/cs_CZ.php | 8 +-- apps/files/l10n/cy_GB.php | 8 +-- apps/files/l10n/da.php | 8 +-- apps/files/l10n/de.php | 8 +-- apps/files/l10n/de_DE.php | 8 +-- apps/files/l10n/el.php | 8 +-- apps/files/l10n/en@pirate.php | 3 + apps/files/l10n/eo.php | 8 +-- apps/files/l10n/es.php | 8 +-- apps/files/l10n/es_AR.php | 8 +-- apps/files/l10n/et_EE.php | 8 +-- apps/files/l10n/eu.php | 8 +-- apps/files/l10n/fa.php | 8 +-- apps/files/l10n/fi_FI.php | 7 +-- apps/files/l10n/fr.php | 8 +-- apps/files/l10n/gl.php | 8 +-- apps/files/l10n/he.php | 8 +-- apps/files/l10n/hi.php | 3 + apps/files/l10n/hr.php | 4 +- apps/files/l10n/hu_HU.php | 8 +-- apps/files/l10n/hy.php | 3 + apps/files/l10n/ia.php | 3 + apps/files/l10n/id.php | 8 +-- apps/files/l10n/is.php | 8 +-- apps/files/l10n/it.php | 8 +-- apps/files/l10n/ja_JP.php | 8 +-- apps/files/l10n/ka.php | 3 + apps/files/l10n/ka_GE.php | 8 +-- apps/files/l10n/ko.php | 8 +-- apps/files/l10n/ku_IQ.php | 3 + apps/files/l10n/lb.php | 3 + apps/files/l10n/lt_LT.php | 8 +-- apps/files/l10n/lv.php | 8 +-- apps/files/l10n/mk.php | 8 +-- apps/files/l10n/ms_MY.php | 3 + apps/files/l10n/my_MM.php | 3 + apps/files/l10n/nb_NO.php | 8 +-- apps/files/l10n/nl.php | 8 +-- apps/files/l10n/nn_NO.php | 8 +-- apps/files/l10n/oc.php | 4 +- apps/files/l10n/pl.php | 8 +-- apps/files/l10n/pt_BR.php | 8 +-- apps/files/l10n/pt_PT.php | 8 +-- apps/files/l10n/ro.php | 8 +-- apps/files/l10n/ru.php | 8 +-- apps/files/l10n/si_LK.php | 6 +- apps/files/l10n/sk_SK.php | 8 +-- apps/files/l10n/sl.php | 8 +-- apps/files/l10n/sq.php | 8 +-- apps/files/l10n/sr.php | 8 +-- apps/files/l10n/sr@latin.php | 3 + apps/files/l10n/sv.php | 8 +-- apps/files/l10n/ta_LK.php | 8 +-- apps/files/l10n/te.php | 3 + apps/files/l10n/th_TH.php | 8 +-- apps/files/l10n/tr.php | 8 +-- apps/files/l10n/ug.php | 7 +-- apps/files/l10n/uk.php | 8 +-- apps/files/l10n/ur_PK.php | 3 + apps/files/l10n/vi.php | 8 +-- apps/files/l10n/zh_CN.GB2312.php | 8 +-- apps/files/l10n/zh_CN.php | 8 +-- apps/files/l10n/zh_HK.php | 4 +- apps/files/l10n/zh_TW.php | 8 +-- apps/files_encryption/l10n/cs_CZ.php | 1 + apps/files_encryption/l10n/da.php | 2 + apps/files_trashbin/l10n/ar.php | 6 +- apps/files_trashbin/l10n/bg_BG.php | 6 +- apps/files_trashbin/l10n/bn_BD.php | 6 +- apps/files_trashbin/l10n/ca.php | 6 +- apps/files_trashbin/l10n/cs_CZ.php | 6 +- apps/files_trashbin/l10n/cy_GB.php | 6 +- apps/files_trashbin/l10n/da.php | 6 +- apps/files_trashbin/l10n/de.php | 6 +- apps/files_trashbin/l10n/de_DE.php | 6 +- apps/files_trashbin/l10n/el.php | 6 +- apps/files_trashbin/l10n/eo.php | 6 +- apps/files_trashbin/l10n/es.php | 6 +- apps/files_trashbin/l10n/es_AR.php | 6 +- apps/files_trashbin/l10n/et_EE.php | 6 +- apps/files_trashbin/l10n/eu.php | 6 +- apps/files_trashbin/l10n/fa.php | 6 +- apps/files_trashbin/l10n/fi_FI.php | 6 +- apps/files_trashbin/l10n/fr.php | 6 +- apps/files_trashbin/l10n/gl.php | 6 +- apps/files_trashbin/l10n/he.php | 6 +- apps/files_trashbin/l10n/hr.php | 2 + apps/files_trashbin/l10n/hu_HU.php | 6 +- apps/files_trashbin/l10n/hy.php | 2 + apps/files_trashbin/l10n/ia.php | 2 + apps/files_trashbin/l10n/id.php | 6 +- apps/files_trashbin/l10n/is.php | 6 +- apps/files_trashbin/l10n/it.php | 6 +- apps/files_trashbin/l10n/ja_JP.php | 6 +- apps/files_trashbin/l10n/ka_GE.php | 6 +- apps/files_trashbin/l10n/ko.php | 6 +- apps/files_trashbin/l10n/ku_IQ.php | 4 +- apps/files_trashbin/l10n/lb.php | 2 + apps/files_trashbin/l10n/lt_LT.php | 6 +- apps/files_trashbin/l10n/lv.php | 6 +- apps/files_trashbin/l10n/mk.php | 6 +- apps/files_trashbin/l10n/ms_MY.php | 2 + apps/files_trashbin/l10n/nb_NO.php | 6 +- apps/files_trashbin/l10n/nl.php | 6 +- apps/files_trashbin/l10n/nn_NO.php | 6 +- apps/files_trashbin/l10n/oc.php | 2 + apps/files_trashbin/l10n/pl.php | 6 +- apps/files_trashbin/l10n/pt_BR.php | 6 +- apps/files_trashbin/l10n/pt_PT.php | 6 +- apps/files_trashbin/l10n/ro.php | 6 +- apps/files_trashbin/l10n/ru.php | 6 +- apps/files_trashbin/l10n/si_LK.php | 4 +- apps/files_trashbin/l10n/sk_SK.php | 6 +- apps/files_trashbin/l10n/sl.php | 6 +- apps/files_trashbin/l10n/sq.php | 6 +- apps/files_trashbin/l10n/sr.php | 6 +- apps/files_trashbin/l10n/sr@latin.php | 2 + apps/files_trashbin/l10n/sv.php | 6 +- apps/files_trashbin/l10n/ta_LK.php | 6 +- apps/files_trashbin/l10n/te.php | 2 + apps/files_trashbin/l10n/th_TH.php | 6 +- apps/files_trashbin/l10n/tr.php | 6 +- apps/files_trashbin/l10n/ug.php | 5 +- apps/files_trashbin/l10n/uk.php | 6 +- apps/files_trashbin/l10n/ur_PK.php | 4 +- apps/files_trashbin/l10n/vi.php | 6 +- apps/files_trashbin/l10n/zh_CN.GB2312.php | 6 +- apps/files_trashbin/l10n/zh_CN.php | 6 +- apps/files_trashbin/l10n/zh_HK.php | 3 +- apps/files_trashbin/l10n/zh_TW.php | 6 +- core/l10n/af_ZA.php | 4 ++ core/l10n/ar.php | 11 ++-- core/l10n/be.php | 4 ++ core/l10n/bg_BG.php | 6 +- core/l10n/bn_BD.php | 11 ++-- core/l10n/bs.php | 4 ++ core/l10n/ca.php | 11 ++-- core/l10n/cs_CZ.php | 12 ++-- core/l10n/cy_GB.php | 11 ++-- core/l10n/da.php | 16 ++--- core/l10n/de.php | 13 ++-- core/l10n/de_AT.php | 9 +++ core/l10n/de_CH.php | 12 ++-- core/l10n/de_DE.php | 13 ++-- core/l10n/el.php | 11 ++-- core/l10n/en@pirate.php | 4 ++ core/l10n/eo.php | 11 ++-- core/l10n/es.php | 11 ++-- core/l10n/es_AR.php | 11 ++-- core/l10n/et_EE.php | 11 ++-- core/l10n/eu.php | 11 ++-- core/l10n/fa.php | 11 ++-- core/l10n/fi_FI.php | 11 ++-- core/l10n/fr.php | 11 ++-- core/l10n/gl.php | 11 ++-- core/l10n/he.php | 11 ++-- core/l10n/hi.php | 4 ++ core/l10n/hr.php | 5 +- core/l10n/hu_HU.php | 11 ++-- core/l10n/hy.php | 6 +- core/l10n/ia.php | 5 +- core/l10n/id.php | 11 ++-- core/l10n/is.php | 11 ++-- core/l10n/it.php | 11 ++-- core/l10n/ja_JP.php | 11 ++-- core/l10n/ka.php | 6 +- core/l10n/ka_GE.php | 11 ++-- core/l10n/kn.php | 8 +++ core/l10n/ko.php | 11 ++-- core/l10n/ku_IQ.php | 4 ++ core/l10n/lb.php | 11 ++-- core/l10n/lt_LT.php | 11 ++-- core/l10n/lv.php | 11 ++-- core/l10n/mk.php | 11 ++-- core/l10n/ml_IN.php | 8 +++ core/l10n/ms_MY.php | 5 +- core/l10n/my_MM.php | 6 +- core/l10n/nb_NO.php | 11 ++-- core/l10n/ne.php | 8 +++ core/l10n/nl.php | 11 ++-- core/l10n/nn_NO.php | 11 ++-- core/l10n/oc.php | 6 +- core/l10n/pl.php | 11 ++-- core/l10n/pt_BR.php | 11 ++-- core/l10n/pt_PT.php | 11 ++-- core/l10n/ro.php | 11 ++-- core/l10n/ru.php | 11 ++-- core/l10n/si_LK.php | 6 +- core/l10n/sk.php | 8 +++ core/l10n/sk_SK.php | 11 ++-- core/l10n/sl.php | 11 ++-- core/l10n/sq.php | 11 ++-- core/l10n/sr.php | 11 ++-- core/l10n/sr@latin.php | 4 ++ core/l10n/sv.php | 11 ++-- core/l10n/sw_KE.php | 8 +++ core/l10n/ta_LK.php | 11 ++-- core/l10n/te.php | 10 ++- core/l10n/th_TH.php | 11 ++-- core/l10n/tr.php | 11 ++-- core/l10n/ug.php | 6 +- core/l10n/uk.php | 11 ++-- core/l10n/ur_PK.php | 5 +- core/l10n/vi.php | 11 ++-- core/l10n/zh_CN.GB2312.php | 11 ++-- core/l10n/zh_CN.php | 11 ++-- core/l10n/zh_HK.php | 4 ++ core/l10n/zh_TW.php | 11 ++-- l10n/af_ZA/core.po | 55 ++++++++-------- l10n/af_ZA/files.po | 68 ++++++++++---------- l10n/af_ZA/files_trashbin.po | 28 ++++----- l10n/af_ZA/lib.po | 48 +++++++------- l10n/ar/core.po | 77 ++++++++++++++--------- l10n/ar/files.po | 56 ++++++++++------- l10n/ar/files_trashbin.po | 38 ++++++----- l10n/ar/lib.po | 68 +++++++++++--------- l10n/be/core.po | 63 +++++++++++-------- l10n/be/files.po | 74 +++++++++++----------- l10n/be/files_trashbin.po | 34 +++++----- l10n/be/lib.po | 56 +++++++++-------- l10n/bg_BG/core.po | 59 ++++++++--------- l10n/bg_BG/files.po | 42 ++++++------- l10n/bg_BG/files_trashbin.po | 30 ++++----- l10n/bg_BG/lib.po | 52 +++++++-------- l10n/bn_BD/core.po | 61 +++++++++--------- l10n/bn_BD/files.po | 42 ++++++------- l10n/bn_BD/files_trashbin.po | 30 ++++----- l10n/bn_BD/lib.po | 52 +++++++-------- l10n/bs/core.po | 59 +++++++++-------- l10n/bs/files.po | 43 ++++++------- l10n/bs/files_trashbin.po | 30 +++++---- l10n/bs/lib.po | 52 +++++++-------- l10n/ca/core.po | 61 +++++++++--------- l10n/ca/files.po | 42 ++++++------- l10n/ca/files_trashbin.po | 32 +++++----- l10n/ca/lib.po | 52 +++++++-------- l10n/cs_CZ/core.po | 68 +++++++++++--------- l10n/cs_CZ/files.po | 47 +++++++------- l10n/cs_CZ/files_encryption.po | 9 +-- l10n/cs_CZ/files_trashbin.po | 34 +++++----- l10n/cs_CZ/lib.po | 56 ++++++++--------- l10n/cy_GB/core.po | 69 +++++++++++--------- l10n/cy_GB/files.po | 48 +++++++------- l10n/cy_GB/files_trashbin.po | 34 +++++----- l10n/cy_GB/lib.po | 60 +++++++++--------- l10n/da/core.po | 72 ++++++++++----------- l10n/da/files.po | 44 +++++++------ l10n/da/files_encryption.po | 11 ++-- l10n/da/files_trashbin.po | 32 +++++----- l10n/da/lib.po | 52 +++++++-------- l10n/de/core.po | 66 +++++++++---------- l10n/de/files.po | 42 ++++++------- l10n/de/files_trashbin.po | 32 +++++----- l10n/de/lib.po | 52 +++++++-------- l10n/de_AT/core.po | 58 ++++++++--------- l10n/de_AT/files.po | 40 ++++++------ l10n/de_AT/files_trashbin.po | 28 ++++----- l10n/de_AT/lib.po | 48 +++++++------- l10n/de_CH/core.po | 64 ++++++++++--------- l10n/de_CH/files.po | 44 +++++++------ l10n/de_CH/files_trashbin.po | 32 +++++----- l10n/de_CH/lib.po | 52 +++++++-------- l10n/de_DE/core.po | 66 +++++++++---------- l10n/de_DE/files.po | 45 +++++++------ l10n/de_DE/files_trashbin.po | 32 +++++----- l10n/de_DE/lib.po | 52 +++++++-------- l10n/el/core.po | 61 +++++++++--------- l10n/el/files.po | 44 +++++++------ l10n/el/files_trashbin.po | 32 +++++----- l10n/el/lib.po | 52 +++++++-------- l10n/en@pirate/core.po | 55 ++++++++-------- l10n/en@pirate/files.po | 40 ++++++------ l10n/en@pirate/files_trashbin.po | 28 ++++----- l10n/en@pirate/lib.po | 48 +++++++------- l10n/eo/core.po | 61 +++++++++--------- l10n/eo/files.po | 42 ++++++------- l10n/eo/files_trashbin.po | 30 ++++----- l10n/eo/lib.po | 52 +++++++-------- l10n/es/core.po | 61 +++++++++--------- l10n/es/files.po | 42 ++++++------- l10n/es/files_trashbin.po | 32 +++++----- l10n/es/lib.po | 52 +++++++-------- l10n/es_AR/core.po | 61 +++++++++--------- l10n/es_AR/files.po | 42 ++++++------- l10n/es_AR/files_trashbin.po | 30 ++++----- l10n/es_AR/lib.po | 52 +++++++-------- l10n/et_EE/core.po | 63 ++++++++++--------- l10n/et_EE/files.po | 42 ++++++------- l10n/et_EE/files_trashbin.po | 32 +++++----- l10n/et_EE/lib.po | 52 +++++++-------- l10n/eu/core.po | 61 +++++++++--------- l10n/eu/files.po | 42 ++++++------- l10n/eu/files_trashbin.po | 30 ++++----- l10n/eu/lib.po | 52 +++++++-------- l10n/fa/core.po | 57 ++++++++--------- l10n/fa/files.po | 37 +++++------ l10n/fa/files_trashbin.po | 26 +++----- l10n/fa/lib.po | 48 ++++++-------- l10n/fi_FI/core.po | 63 ++++++++++--------- l10n/fi_FI/files.po | 42 ++++++------- l10n/fi_FI/files_trashbin.po | 32 +++++----- l10n/fi_FI/lib.po | 52 +++++++-------- l10n/fr/core.po | 61 +++++++++--------- l10n/fr/files.po | 42 ++++++------- l10n/fr/files_trashbin.po | 30 ++++----- l10n/fr/lib.po | 52 +++++++-------- l10n/gl/core.po | 63 ++++++++++--------- l10n/gl/files.po | 42 ++++++------- l10n/gl/files_trashbin.po | 32 +++++----- l10n/gl/lib.po | 52 +++++++-------- l10n/he/core.po | 61 +++++++++--------- l10n/he/files.po | 42 ++++++------- l10n/he/files_trashbin.po | 30 ++++----- l10n/he/lib.po | 52 +++++++-------- l10n/hi/core.po | 55 ++++++++-------- l10n/hi/files.po | 40 ++++++------ l10n/hi/files_trashbin.po | 28 ++++----- l10n/hi/lib.po | 48 +++++++------- l10n/hr/core.po | 65 ++++++++++--------- l10n/hr/files.po | 45 ++++++------- l10n/hr/files_trashbin.po | 32 +++++----- l10n/hr/lib.po | 56 ++++++++--------- l10n/hu_HU/core.po | 61 +++++++++--------- l10n/hu_HU/files.po | 42 ++++++------- l10n/hu_HU/files_trashbin.po | 32 +++++----- l10n/hu_HU/lib.po | 52 +++++++-------- l10n/hy/core.po | 55 ++++++++-------- l10n/hy/files.po | 40 ++++++------ l10n/hy/files_trashbin.po | 28 ++++----- l10n/hy/lib.po | 48 +++++++------- l10n/ia/core.po | 57 ++++++++--------- l10n/ia/files.po | 42 ++++++------- l10n/ia/files_trashbin.po | 30 ++++----- l10n/ia/lib.po | 48 +++++++------- l10n/id/core.po | 57 ++++++++--------- l10n/id/files.po | 37 +++++------ l10n/id/files_trashbin.po | 26 +++----- l10n/id/lib.po | 48 ++++++-------- l10n/is/core.po | 61 +++++++++--------- l10n/is/files.po | 42 ++++++------- l10n/is/files_trashbin.po | 30 ++++----- l10n/is/lib.po | 52 +++++++-------- l10n/it/core.po | 61 +++++++++--------- l10n/it/files.po | 42 ++++++------- l10n/it/files_trashbin.po | 32 +++++----- l10n/it/lib.po | 52 +++++++-------- l10n/ja_JP/core.po | 59 +++++++++-------- l10n/ja_JP/files.po | 37 +++++------ l10n/ja_JP/files_trashbin.po | 28 ++++----- l10n/ja_JP/lib.po | 48 ++++++-------- l10n/ka/core.po | 53 ++++++++-------- l10n/ka/files.po | 37 +++++------ l10n/ka/files_trashbin.po | 26 +++----- l10n/ka/lib.po | 48 ++++++-------- l10n/ka_GE/core.po | 57 ++++++++--------- l10n/ka_GE/files.po | 37 +++++------ l10n/ka_GE/files_trashbin.po | 26 +++----- l10n/ka_GE/lib.po | 48 ++++++-------- l10n/kn/core.po | 51 +++++++-------- l10n/kn/files.po | 65 +++++++++---------- l10n/kn/files_trashbin.po | 26 +++----- l10n/kn/lib.po | 44 ++++++------- l10n/ko/core.po | 57 ++++++++--------- l10n/ko/files.po | 37 +++++------ l10n/ko/files_trashbin.po | 26 +++----- l10n/ko/lib.po | 48 ++++++-------- l10n/ku_IQ/core.po | 55 ++++++++-------- l10n/ku_IQ/files.po | 40 ++++++------ l10n/ku_IQ/files_trashbin.po | 28 ++++----- l10n/ku_IQ/lib.po | 48 +++++++------- l10n/lb/core.po | 61 +++++++++--------- l10n/lb/files.po | 42 ++++++------- l10n/lb/files_trashbin.po | 30 ++++----- l10n/lb/lib.po | 52 +++++++-------- l10n/lt_LT/core.po | 65 ++++++++++--------- l10n/lt_LT/files.po | 45 ++++++------- l10n/lt_LT/files_trashbin.po | 32 +++++----- l10n/lt_LT/lib.po | 56 ++++++++--------- l10n/lv/core.po | 65 ++++++++++--------- l10n/lv/files.po | 45 ++++++------- l10n/lv/files_trashbin.po | 32 +++++----- l10n/lv/lib.po | 56 ++++++++--------- l10n/mk/core.po | 61 +++++++++--------- l10n/mk/files.po | 42 ++++++------- l10n/mk/files_trashbin.po | 30 ++++----- l10n/mk/lib.po | 52 +++++++-------- l10n/ml_IN/core.po | 55 ++++++++-------- l10n/ml_IN/files.po | 68 ++++++++++---------- l10n/ml_IN/files_trashbin.po | 28 ++++----- l10n/ml_IN/lib.po | 48 +++++++------- l10n/ms_MY/core.po | 53 ++++++++-------- l10n/ms_MY/files.po | 37 +++++------ l10n/ms_MY/files_trashbin.po | 26 +++----- l10n/ms_MY/lib.po | 44 ++++++------- l10n/my_MM/core.po | 55 ++++++++-------- l10n/my_MM/files.po | 37 +++++------ l10n/my_MM/files_trashbin.po | 26 +++----- l10n/my_MM/lib.po | 48 ++++++-------- l10n/nb_NO/core.po | 61 +++++++++--------- l10n/nb_NO/files.po | 42 ++++++------- l10n/nb_NO/files_trashbin.po | 30 ++++----- l10n/nb_NO/lib.po | 52 +++++++-------- l10n/ne/core.po | 55 ++++++++-------- l10n/ne/files.po | 68 ++++++++++---------- l10n/ne/files_trashbin.po | 28 ++++----- l10n/ne/lib.po | 48 +++++++------- l10n/nl/core.po | 63 ++++++++++--------- l10n/nl/files.po | 42 ++++++------- l10n/nl/files_trashbin.po | 32 +++++----- l10n/nl/lib.po | 52 +++++++-------- l10n/nn_NO/core.po | 61 +++++++++--------- l10n/nn_NO/files.po | 42 ++++++------- l10n/nn_NO/files_trashbin.po | 30 ++++----- l10n/nn_NO/lib.po | 52 +++++++-------- l10n/oc/core.po | 61 +++++++++--------- l10n/oc/files.po | 42 ++++++------- l10n/oc/files_trashbin.po | 30 ++++----- l10n/oc/lib.po | 52 +++++++-------- l10n/pl/core.po | 67 +++++++++++--------- l10n/pl/files.po | 45 ++++++------- l10n/pl/files_trashbin.po | 34 +++++----- l10n/pl/lib.po | 56 ++++++++--------- l10n/pt_BR/core.po | 63 ++++++++++--------- l10n/pt_BR/files.po | 42 ++++++------- l10n/pt_BR/files_trashbin.po | 32 +++++----- l10n/pt_BR/lib.po | 52 +++++++-------- l10n/pt_PT/core.po | 61 +++++++++--------- l10n/pt_PT/files.po | 42 ++++++------- l10n/pt_PT/files_trashbin.po | 32 +++++----- l10n/pt_PT/lib.po | 52 +++++++-------- l10n/ro/core.po | 65 ++++++++++--------- l10n/ro/files.po | 45 ++++++------- l10n/ro/files_trashbin.po | 32 +++++----- l10n/ro/lib.po | 56 ++++++++--------- l10n/ru/core.po | 65 ++++++++++--------- l10n/ru/files.po | 45 ++++++------- l10n/ru/files_trashbin.po | 34 +++++----- l10n/ru/lib.po | 56 ++++++++--------- l10n/si_LK/core.po | 61 +++++++++--------- l10n/si_LK/files.po | 42 ++++++------- l10n/si_LK/files_trashbin.po | 30 ++++----- l10n/si_LK/lib.po | 52 +++++++-------- l10n/sk/core.po | 59 +++++++++-------- l10n/sk/files.po | 71 ++++++++++----------- l10n/sk/files_trashbin.po | 30 +++++---- l10n/sk/lib.po | 52 +++++++-------- l10n/sk_SK/core.po | 65 ++++++++++--------- l10n/sk_SK/files.po | 45 ++++++------- l10n/sk_SK/files_trashbin.po | 34 +++++----- l10n/sk_SK/lib.po | 56 ++++++++--------- l10n/sl/core.po | 69 +++++++++++--------- l10n/sl/files.po | 48 +++++++------- l10n/sl/files_trashbin.po | 34 +++++----- l10n/sl/lib.po | 60 +++++++++--------- l10n/sq/core.po | 61 +++++++++--------- l10n/sq/files.po | 42 ++++++------- l10n/sq/files_trashbin.po | 30 ++++----- l10n/sq/lib.po | 52 +++++++-------- l10n/sr/core.po | 65 ++++++++++--------- l10n/sr/files.po | 45 ++++++------- l10n/sr/files_trashbin.po | 32 +++++----- l10n/sr/lib.po | 56 ++++++++--------- l10n/sr@latin/core.po | 59 +++++++++-------- l10n/sr@latin/files.po | 45 ++++++------- l10n/sr@latin/files_trashbin.po | 30 +++++---- l10n/sr@latin/lib.po | 52 +++++++-------- l10n/sv/core.po | 61 +++++++++--------- l10n/sv/files.po | 42 ++++++------- l10n/sv/files_trashbin.po | 32 +++++----- l10n/sv/lib.po | 52 +++++++-------- l10n/sw_KE/core.po | 55 ++++++++-------- l10n/sw_KE/files.po | 68 ++++++++++---------- l10n/sw_KE/files_trashbin.po | 28 ++++----- l10n/sw_KE/lib.po | 48 +++++++------- l10n/ta_LK/core.po | 61 +++++++++--------- l10n/ta_LK/files.po | 42 ++++++------- l10n/ta_LK/files_trashbin.po | 30 ++++----- l10n/ta_LK/lib.po | 52 +++++++-------- l10n/te/core.po | 59 ++++++++--------- l10n/te/files.po | 40 ++++++------ l10n/te/files_trashbin.po | 30 ++++----- l10n/te/lib.po | 52 +++++++-------- l10n/templates/core.pot | 54 ++++++++-------- l10n/templates/files.pot | 39 ++++++------ l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 27 ++++---- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 47 +++++++------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 57 ++++++++--------- l10n/th_TH/files.po | 37 +++++------ l10n/th_TH/files_trashbin.po | 26 +++----- l10n/th_TH/lib.po | 48 ++++++-------- l10n/tr/core.po | 61 +++++++++--------- l10n/tr/files.po | 42 ++++++------- l10n/tr/files_trashbin.po | 30 ++++----- l10n/tr/lib.po | 52 +++++++-------- l10n/ug/core.po | 53 ++++++++-------- l10n/ug/files.po | 37 +++++------ l10n/ug/files_trashbin.po | 26 +++----- l10n/ug/lib.po | 48 ++++++-------- l10n/uk/core.po | 65 ++++++++++--------- l10n/uk/files.po | 47 +++++++------- l10n/uk/files_trashbin.po | 34 +++++----- l10n/uk/lib.po | 56 ++++++++--------- l10n/ur_PK/core.po | 57 ++++++++--------- l10n/ur_PK/files.po | 40 ++++++------ l10n/ur_PK/files_trashbin.po | 28 ++++----- l10n/ur_PK/lib.po | 48 +++++++------- l10n/vi/core.po | 57 ++++++++--------- l10n/vi/files.po | 37 +++++------ l10n/vi/files_trashbin.po | 26 +++----- l10n/vi/lib.po | 48 ++++++-------- l10n/zh_CN.GB2312/core.po | 57 ++++++++--------- l10n/zh_CN.GB2312/files.po | 37 +++++------ l10n/zh_CN.GB2312/files_trashbin.po | 26 +++----- l10n/zh_CN.GB2312/lib.po | 48 ++++++-------- l10n/zh_CN/core.po | 57 ++++++++--------- l10n/zh_CN/files.po | 37 +++++------ l10n/zh_CN/files_trashbin.po | 26 +++----- l10n/zh_CN/lib.po | 48 ++++++-------- l10n/zh_HK/core.po | 55 ++++++++-------- l10n/zh_HK/files.po | 37 +++++------ l10n/zh_HK/files_trashbin.po | 26 +++----- l10n/zh_HK/lib.po | 48 ++++++-------- l10n/zh_TW/core.po | 57 ++++++++--------- l10n/zh_TW/files.po | 37 +++++------ l10n/zh_TW/files_trashbin.po | 26 +++----- l10n/zh_TW/lib.po | 48 ++++++-------- lib/l10n/af_ZA.php | 6 +- lib/l10n/ar.php | 10 ++- lib/l10n/be.php | 8 +++ lib/l10n/bg_BG.php | 10 ++- lib/l10n/bn_BD.php | 8 +-- lib/l10n/bs.php | 8 +++ lib/l10n/ca.php | 10 ++- lib/l10n/cs_CZ.php | 10 ++- lib/l10n/cy_GB.php | 10 ++- lib/l10n/da.php | 10 ++- lib/l10n/de.php | 10 ++- lib/l10n/de_AT.php | 8 +++ lib/l10n/de_CH.php | 10 ++- lib/l10n/de_DE.php | 10 ++- lib/l10n/el.php | 10 ++- lib/l10n/en@pirate.php | 6 +- lib/l10n/eo.php | 10 ++- lib/l10n/es.php | 10 ++- lib/l10n/es_AR.php | 10 ++- lib/l10n/et_EE.php | 10 ++- lib/l10n/eu.php | 10 ++- lib/l10n/fa.php | 10 ++- lib/l10n/fi_FI.php | 10 ++- lib/l10n/fr.php | 10 ++- lib/l10n/gl.php | 10 ++- lib/l10n/he.php | 10 ++- lib/l10n/hi.php | 6 +- lib/l10n/hr.php | 4 ++ lib/l10n/hu_HU.php | 10 ++- lib/l10n/hy.php | 8 +++ lib/l10n/ia.php | 6 +- lib/l10n/id.php | 10 ++- lib/l10n/is.php | 10 ++- lib/l10n/it.php | 10 ++- lib/l10n/ja_JP.php | 10 ++- lib/l10n/ka.php | 8 +-- lib/l10n/ka_GE.php | 10 ++- lib/l10n/kn.php | 8 +++ lib/l10n/ko.php | 10 ++- lib/l10n/ku_IQ.php | 6 +- lib/l10n/lb.php | 6 +- lib/l10n/lt_LT.php | 10 ++- lib/l10n/lv.php | 10 ++- lib/l10n/mk.php | 10 ++- lib/l10n/ml_IN.php | 8 +++ lib/l10n/ms_MY.php | 6 +- lib/l10n/my_MM.php | 10 ++- lib/l10n/nb_NO.php | 10 ++- lib/l10n/ne.php | 8 +++ lib/l10n/nl.php | 10 ++- lib/l10n/nn_NO.php | 6 +- lib/l10n/oc.php | 7 ++- lib/l10n/pl.php | 10 ++- lib/l10n/pt_BR.php | 10 ++- lib/l10n/pt_PT.php | 10 ++- lib/l10n/ro.php | 10 ++- lib/l10n/ru.php | 10 ++- lib/l10n/si_LK.php | 7 ++- lib/l10n/sk.php | 8 +++ lib/l10n/sk_SK.php | 10 ++- lib/l10n/sl.php | 10 ++- lib/l10n/sq.php | 10 ++- lib/l10n/sr.php | 10 ++- lib/l10n/sr@latin.php | 6 +- lib/l10n/sv.php | 10 ++- lib/l10n/sw_KE.php | 8 +++ lib/l10n/ta_LK.php | 10 ++- lib/l10n/te.php | 6 +- lib/l10n/th_TH.php | 10 ++- lib/l10n/tr.php | 10 ++- lib/l10n/ug.php | 10 ++- lib/l10n/uk.php | 10 ++- lib/l10n/ur_PK.php | 6 +- lib/l10n/vi.php | 10 ++- lib/l10n/zh_CN.GB2312.php | 8 +-- lib/l10n/zh_CN.php | 10 ++- lib/l10n/zh_HK.php | 6 +- lib/l10n/zh_TW.php | 10 ++- 615 files changed, 8099 insertions(+), 8868 deletions(-) create mode 100644 core/l10n/de_AT.php create mode 100644 core/l10n/kn.php create mode 100644 core/l10n/ml_IN.php create mode 100644 core/l10n/ne.php create mode 100644 core/l10n/sk.php create mode 100644 core/l10n/sw_KE.php create mode 100644 lib/l10n/be.php create mode 100644 lib/l10n/bs.php create mode 100644 lib/l10n/de_AT.php create mode 100644 lib/l10n/hy.php create mode 100644 lib/l10n/kn.php create mode 100644 lib/l10n/ml_IN.php create mode 100644 lib/l10n/ne.php create mode 100644 lib/l10n/sk.php create mode 100644 lib/l10n/sw_KE.php diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 878bb2eefb2..8a86811b86f 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -30,7 +30,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", "perform delete operation" => "جاري تنفيذ عملية الحذف", -"1 file uploading" => "جاري رفع 1 ملف", +"_Uploading %n file_::_Uploading %n files_" => array(,), "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", @@ -41,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", -"1 folder" => "مجلد عدد 1", -"{count} folders" => "{count} مجلدات", -"1 file" => "ملف واحد", -"{count} files" => "{count} ملفات", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 47f73206799..a6849c30915 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -18,13 +18,12 @@ $TRANSLATIONS = array( "replace" => "препокриване", "cancel" => "отказ", "undo" => "възтановяване", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 файл", -"{count} files" => "{count} файла", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 288b1477bfb..ca77eea1c6e 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -28,7 +28,7 @@ $TRANSLATIONS = array( "cancel" => "বাতিল", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", -"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", +"_Uploading %n file_::_Uploading %n files_" => array(,), "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", @@ -36,10 +36,8 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"1 folder" => "১টি ফোল্ডার", -"{count} folders" => "{count} টি ফোল্ডার", -"1 file" => "১টি ফাইল", -"{count} files" => "{count} টি ফাইল", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8d8469fbea4..d928049f9bc 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "undo" => "desfés", "perform delete operation" => "executa d'operació d'esborrar", -"1 file uploading" => "1 fitxer pujant", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fitxers pujant", "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetes", -"1 file" => "1 fitxer", -"{count} files" => "{count} fitxers", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index ba94b9c5acc..4cd595bd7e2 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "undo" => "vrátit zpět", "perform delete operation" => "provést smazání", -"1 file uploading" => "odesílá se 1 soubor", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "soubory se odesílají", "'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"1 folder" => "1 složka", -"{count} folders" => "{count} složek", -"1 file" => "1 soubor", -"{count} files" => "{count} souborů", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index dc50b9cc3f5..c0639d9746f 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", "undo" => "dadwneud", "perform delete operation" => "cyflawni gweithred dileu", -"1 file uploading" => "1 ffeil yn llwytho i fyny", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "ffeiliau'n llwytho i fyny", "'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", "File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"1 folder" => "1 blygell", -"{count} folders" => "{count} plygell", -"1 file" => "1 ffeil", -"{count} files" => "{count} ffeil", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index f066b702b3f..639d910e107 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", "perform delete operation" => "udfør slet operation", -"1 file uploading" => "1 fil uploades", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "uploader filer", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c89294bc092..a1be267f4d9 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", -"1 file uploading" => "1 Datei wird hochgeladen", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6a4cbcef069..115ab136420 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", -"1 file uploading" => "1 Datei wird hochgeladen", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 0246ba2a89d..2778276a8c0 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", "perform delete operation" => "εκτέλεση της διαδικασίας διαγραφής", -"1 file uploading" => "1 αρχείο ανεβαίνει", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "αρχεία ανεβαίνουν", "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", -"1 folder" => "1 φάκελος", -"{count} folders" => "{count} φάκελοι", -"1 file" => "1 αρχείο", -"{count} files" => "{count} αρχεία", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php index 339f94ae973..c9c54ed74c3 100644 --- a/apps/files/l10n/en@pirate.php +++ b/apps/files/l10n/en@pirate.php @@ -1,5 +1,8 @@ array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Download" => "Download" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 726abb13343..0f433a81e25 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", "perform delete operation" => "plenumi forigan operacion", -"1 file uploading" => "1 dosiero estas alŝutata", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "dosieroj estas alŝutataj", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", @@ -44,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", -"1 folder" => "1 dosierujo", -"{count} folders" => "{count} dosierujoj", -"1 file" => "1 dosiero", -"{count} files" => "{count} dosierujoj", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 407a783a85e..031ed460c49 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Realizar operación de borrado", -"1 file uploading" => "subiendo 1 archivo", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "subiendo archivos", "'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetas", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Manejo de archivos", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index fd422ab1d95..33403644dfb 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Llevar a cabo borrado", -"1 file uploading" => "Subiendo 1 archivo", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 directorio", -"{count} folders" => "{count} directorios", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "No se pudo renombrar %s", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index e6a643fbadf..b2978304ac5 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "undo" => "tagasi", "perform delete operation" => "teosta kustutamine", -"1 file uploading" => "1 fail üleslaadimisel", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "faili üleslaadimisel", "'.' is an invalid file name." => "'.' on vigane failinimi.", "File name cannot be empty." => "Faili nimi ei saa olla tühi.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", -"1 folder" => "1 kaust", -"{count} folders" => "{count} kausta", -"1 file" => "1 fail", -"{count} files" => "{count} faili", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 740f53d4e9a..7f29f09fc7f 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "undo" => "desegin", "perform delete operation" => "Ezabatu", -"1 file uploading" => "fitxategi 1 igotzen", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fitxategiak igotzen", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"1 folder" => "karpeta bat", -"{count} folders" => "{count} karpeta", -"1 file" => "fitxategi bat", -"{count} files" => "{count} fitxategi", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 9670afdd051..11f8cff3999 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", "perform delete operation" => "انجام عمل حذف", -"1 file uploading" => "1 پرونده آپلود شد.", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "بارگذاری فایل ها", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", -"1 folder" => "1 پوشه", -"{count} folders" => "{ شمار} پوشه ها", -"1 file" => "1 پرونده", -"{count} files" => "{ شمار } فایل ها", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 2d1bf8c4e3f..f0790b469b3 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "cancel" => "peru", "undo" => "kumoa", "perform delete operation" => "suorita poistotoiminto", +"_Uploading %n file_::_Uploading %n files_" => array(,), "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", @@ -39,10 +40,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", -"1 folder" => "1 kansio", -"{count} folders" => "{count} kansiota", -"1 file" => "1 tiedosto", -"{count} files" => "{count} tiedostoa", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index ad79a9f4999..9d5b7632a80 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "undo" => "annuler", "perform delete operation" => "effectuer l'opération de suppression", -"1 file uploading" => "1 fichier en cours d'envoi", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fichiers en cours d'envoi", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", -"1 folder" => "1 dossier", -"{count} folders" => "{count} dossiers", -"1 file" => "1 fichier", -"{count} files" => "{count} fichiers", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s ne peut être renommé", "Upload" => "Envoyer", "File handling" => "Gestion des fichiers", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 02bbad53e43..0dc681a571a 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "undo" => "desfacer", "perform delete operation" => "realizar a operación de eliminación", -"1 file uploading" => "Enviándose 1 ficheiro", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "ficheiros enviándose", "'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 cartafol", -"{count} folders" => "{count} cartafoles", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 8af6b0852ee..1868ffe1d65 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,16 +30,14 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "undo" => "ביטול", "perform delete operation" => "ביצוע פעולת מחיקה", -"1 file uploading" => "קובץ אחד נשלח", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "קבצים בהעלאה", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"1 folder" => "תיקייה אחת", -"{count} folders" => "{count} תיקיות", -"1 file" => "קובץ אחד", -"{count} files" => "{count} קבצים", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 48e2194256d..0066d8badda 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Error" => "त्रुटि", "Share" => "साझा करें", +"_Uploading %n file_::_Uploading %n files_" => array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 6bc6904041a..a17161b0092 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -19,11 +19,13 @@ $TRANSLATIONS = array( "suggest name" => "predloži ime", "cancel" => "odustani", "undo" => "vrati", -"1 file uploading" => "1 datoteka se učitava", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "datoteke se učitavaju", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 061fb27f0f5..30bffdf1082 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", "perform delete operation" => "a törlés végrehajtása", -"1 file uploading" => "1 fájl töltődik föl", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fájl töltődik föl", "'.' is an invalid file name." => "'.' fájlnév érvénytelen.", "File name cannot be empty." => "A fájlnév nem lehet semmi.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", -"1 folder" => "1 mappa", -"{count} folders" => "{count} mappa", -"1 file" => "1 fájl", -"{count} files" => "{count} fájl", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s átnevezése nem sikerült", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 101734c01dd..4d4f4c0c775 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,6 +1,9 @@ "Ջնջել", +"_Uploading %n file_::_Uploading %n files_" => array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Save" => "Պահպանել", "Download" => "Բեռնել" ); diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 2ccd559469d..af42d2f05e9 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -7,9 +7,12 @@ $TRANSLATIONS = array( "Error" => "Error", "Share" => "Compartir", "Delete" => "Deler", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 4b6bf8a32b9..79dd9e727a3 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", "undo" => "urungkan", "perform delete operation" => "Lakukan operasi penghapusan", -"1 file uploading" => "1 berkas diunggah", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "berkas diunggah", "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", "File name cannot be empty." => "Nama berkas tidak boleh kosong.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"1 folder" => "1 folder", -"{count} folders" => "{count} folder", -"1 file" => "1 berkas", -"{count} files" => "{count} berkas", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 8a131b20c8f..4e089be877c 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -28,7 +28,7 @@ $TRANSLATIONS = array( "cancel" => "hætta við", "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "undo" => "afturkalla", -"1 file uploading" => "1 skrá innsend", +"_Uploading %n file_::_Uploading %n files_" => array(,), "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", @@ -36,10 +36,8 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"1 folder" => "1 mappa", -"{count} folders" => "{count} möppur", -"1 file" => "1 skrá", -"{count} files" => "{count} skrár", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e5e4bd03bb3..34d4a752e37 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", "perform delete operation" => "esegui l'operazione di eliminazione", -"1 file uploading" => "1 file in fase di caricamento", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "caricamento file", "'.' is an invalid file name." => "'.' non è un nome file valido.", "File name cannot be empty." => "Il nome del file non può essere vuoto.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"1 folder" => "1 cartella", -"{count} folders" => "{count} cartelle", -"1 file" => "1 file", -"{count} files" => "{count} file", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s non può essere rinominato", "Upload" => "Carica", "File handling" => "Gestione file", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 0902353a171..6124d22b2f4 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", "perform delete operation" => "削除を実行", -"1 file uploading" => "ファイルを1つアップロード中", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "ファイルをアップロード中", "'.' is an invalid file name." => "'.' は無効なファイル名です。", "File name cannot be empty." => "ファイル名を空にすることはできません。", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "変更", -"1 folder" => "1 フォルダ", -"{count} folders" => "{count} フォルダ", -"1 file" => "1 ファイル", -"{count} files" => "{count} ファイル", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%sの名前を変更できませんでした", "Upload" => "アップロード", "File handling" => "ファイル操作", diff --git a/apps/files/l10n/ka.php b/apps/files/l10n/ka.php index bbc70614cfc..32c41840e5a 100644 --- a/apps/files/l10n/ka.php +++ b/apps/files/l10n/ka.php @@ -1,6 +1,9 @@ "ფაილები", +"_Uploading %n file_::_Uploading %n files_" => array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Download" => "გადმოწერა" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index f6bf618106a..63bbfd70326 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", "perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", -"1 file uploading" => "1 ფაილის ატვირთვა", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "ფაილები იტვირთება", "'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", "File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"1 folder" => "1 საქაღალდე", -"{count} folders" => "{count} საქაღალდე", -"1 file" => "1 ფაილი", -"{count} files" => "{count} ფაილი", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d68fb162d07..ce3445c3660 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "undo" => "되돌리기", "perform delete operation" => "삭제 작업중", -"1 file uploading" => "파일 1개 업로드 중", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "파일 업로드중", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"1 folder" => "폴더 1개", -"{count} folders" => "폴더 {count}개", -"1 file" => "파일 1개", -"{count} files" => "파일 {count}개", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index ad85edaa0de..76a66b06cc6 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -2,7 +2,10 @@ $TRANSLATIONS = array( "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Error" => "هه‌ڵه", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "ناو", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 762d9189fb8..eb27a535e9c 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -16,9 +16,12 @@ $TRANSLATIONS = array( "replace" => "ersetzen", "cancel" => "ofbriechen", "undo" => "réckgängeg man", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index c2d0fee6e6e..9580e64fda9 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "undo" => "anuliuoti", "perform delete operation" => "ištrinti", -"1 file uploading" => "įkeliamas 1 failas", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "įkeliami failai", "'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", "File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", @@ -44,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", -"1 folder" => "1 aplankalas", -"{count} folders" => "{count} aplankalai", -"1 file" => "1 failas", -"{count} files" => "{count} failai", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 24161cb2a69..5012c9776ee 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", "undo" => "atsaukt", "perform delete operation" => "veikt dzēšanas darbību", -"1 file uploading" => "Augšupielādē 1 datni", +"_Uploading %n file_::_Uploading %n files_" => array(,), "'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", "File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", @@ -42,10 +42,8 @@ $TRANSLATIONS = array( "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", -"1 folder" => "1 mape", -"{count} folders" => "{count} mapes", -"1 file" => "1 datne", -"{count} files" => "{count} datnes", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index a922876553b..a1cadeedcc2 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -24,15 +24,13 @@ $TRANSLATIONS = array( "cancel" => "откажи", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "undo" => "врати", -"1 file uploading" => "1 датотека се подига", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеки", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 48ef8587cab..9ea8d2fd43d 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -16,9 +16,12 @@ $TRANSLATIONS = array( "Pending" => "Dalam proses", "replace" => "ganti", "cancel" => "Batal", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", diff --git a/apps/files/l10n/my_MM.php b/apps/files/l10n/my_MM.php index c94cc5fd6f4..dbade02e9cf 100644 --- a/apps/files/l10n/my_MM.php +++ b/apps/files/l10n/my_MM.php @@ -1,6 +1,9 @@ "ဖိုင်များ", +"_Uploading %n file_::_Uploading %n files_" => array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 15104914fd8..d198f3762dc 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -33,7 +33,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "undo" => "angre", "perform delete operation" => "utfør sletting", -"1 file uploading" => "1 fil lastes opp", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "filer lastes opp", "'.' is an invalid file name." => "'.' er et ugyldig filnavn.", "File name cannot be empty." => "Filnavn kan ikke være tomt.", @@ -45,10 +45,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Last opp", "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 d0f6542f1fe..63d75a1a36f 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "undo" => "ongedaan maken", "perform delete operation" => "uitvoeren verwijderactie", -"1 file uploading" => "1 bestand wordt ge-upload", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "bestanden aan het uploaden", "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", -"1 folder" => "1 map", -"{count} folders" => "{count} mappen", -"1 file" => "1 bestand", -"{count} files" => "{count} bestanden", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload" => "Uploaden", "File handling" => "Bestand", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 2e1a5a5cfcb..1dd706913e6 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", "undo" => "angre", "perform delete operation" => "utfør sletting", -"1 file uploading" => "1 fil lastar opp", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "filer lastar opp", "'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", @@ -44,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 382a4b2158b..fd3d20dac89 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -19,11 +19,13 @@ $TRANSLATIONS = array( "suggest name" => "nom prepausat", "cancel" => "anulla", "undo" => "defar", -"1 file uploading" => "1 fichièr al amontcargar", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fichièrs al amontcargar", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index fc37234fc66..febcd84a3e1 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", "perform delete operation" => "wykonaj operację usunięcia", -"1 file uploading" => "1 plik wczytywany", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "pliki wczytane", "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", -"1 folder" => "1 folder", -"{count} folders" => "Ilość folderów: {count}", -"1 file" => "1 plik", -"{count} files" => "Ilość plików: {count}", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 421de07c2b7..948cd451da2 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "undo" => "desfazer", "perform delete operation" => "realizar operação de exclusão", -"1 file uploading" => "enviando 1 arquivo", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "enviando arquivos", "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 arquivo", -"{count} files" => "{count} arquivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s não pode ser renomeado", "Upload" => "Upload", "File handling" => "Tratamento de Arquivo", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index c9b98bbed49..0ff9381a1a4 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "undo" => "desfazer", "perform delete operation" => "Executar a tarefa de apagar", -"1 file uploading" => "A enviar 1 ficheiro", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "A enviar os ficheiros", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index c9b340ff9be..b31c1247791 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "undo" => "Anulează ultima acțiune", "perform delete operation" => "efectueaza operatiunea de stergere", -"1 file uploading" => "un fișier se încarcă", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "fișiere se încarcă", "'.' is an invalid file name." => "'.' este un nume invalid de fișier.", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", -"1 folder" => "1 folder", -"{count} folders" => "{count} foldare", -"1 file" => "1 fisier", -"{count} files" => "{count} fisiere", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s nu a putut fi redenumit", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4d3bec02742..b31bdd97e5a 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", "perform delete operation" => "выполнить операцию удаления", -"1 file uploading" => "загружается 1 файл", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "файлы загружаются", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменён", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлов", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", "File handling" => "Управление файлами", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 4f576af17e5..ac5ad960a49 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -19,12 +19,12 @@ $TRANSLATIONS = array( "suggest name" => "නමක් යෝජනා කරන්න", "cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", -"1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", -"1 folder" => "1 ෆොල්ඩරයක්", -"1 file" => "1 ගොනුවක්", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index f0220822d0a..88e5818cfbb 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "undo" => "vrátiť", "perform delete operation" => "vykonať zmazanie", -"1 file uploading" => "1 súbor sa posiela ", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "nahrávanie súborov", "'.' is an invalid file name." => "'.' je neplatné meno súboru.", "File name cannot be empty." => "Meno súboru nemôže byť prázdne", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", -"1 folder" => "1 priečinok", -"{count} folders" => "{count} priečinkov", -"1 file" => "1 súbor", -"{count} files" => "{count} súborov", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s nemohol byť premenovaný", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 85daabf6cf1..89397e2e420 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", "perform delete operation" => "izvedi opravilo brisanja", -"1 file uploading" => "Pošiljanje 1 datoteke", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "poteka pošiljanje datotek", "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"1 folder" => "1 mapa", -"{count} folders" => "{count} map", -"1 file" => "1 datoteka", -"{count} files" => "{count} datotek", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s ni bilo mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 91f53fc00bb..5ad8de8aa5a 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}", "undo" => "anulo", "perform delete operation" => "ekzekuto operacionin e eliminimit", -"1 file uploading" => "Po ngarkohet 1 skedar", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "po ngarkoj skedarët", "'.' is an invalid file name." => "'.' është emër i pavlefshëm.", "File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Emri", "Size" => "Dimensioni", "Modified" => "Modifikuar", -"1 folder" => "1 dosje", -"{count} folders" => "{count} dosje", -"1 file" => "1 skedar", -"{count} files" => "{count} skedarë", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Ngarko", "File handling" => "Trajtimi i skedarit", "Maximum upload size" => "Dimensioni maksimal i ngarkimit", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 09d1683a915..8907b7ab2c9 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", "perform delete operation" => "обриши", -"1 file uploading" => "Отпремам 1 датотеку", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "датотеке се отпремају", "'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", "File name cannot be empty." => "Име датотеке не може бити празно.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"1 folder" => "1 фасцикла", -"{count} folders" => "{count} фасцикле/и", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеке/а", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 5b425aaa963..441253c5c81 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -7,9 +7,12 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Delete" => "Obriši", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 41206423cfe..a96e1e8e4ab 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "undo" => "ångra", "perform delete operation" => "utför raderingen", -"1 file uploading" => "1 filuppladdning", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "filer laddas upp", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "File name cannot be empty." => "Filnamn kan inte vara tomt.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", -"1 folder" => "1 mapp", -"{count} folders" => "{count} mappar", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s kunde inte namnändras", "Upload" => "Ladda upp", "File handling" => "Filhantering", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 616248d87b9..64680ede69f 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -23,15 +23,13 @@ $TRANSLATIONS = array( "cancel" => "இரத்து செய்க", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "undo" => "முன் செயல் நீக்கம் ", -"1 file uploading" => "1 கோப்பு பதிவேற்றப்படுகிறது", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"1 folder" => "1 கோப்புறை", -"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", -"1 file" => "1 கோப்பு", -"{count} files" => "{எண்ணிக்கை} கோப்புகள்", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index bb729b0187e..df03fc9824f 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -4,8 +4,11 @@ $TRANSLATIONS = array( "Delete permanently" => "శాశ్వతంగా తొలగించు", "Delete" => "తొలగించు", "cancel" => "రద్దుచేయి", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "పేరు", "Size" => "పరిమాణం", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Save" => "భద్రపరచు", "Folder" => "సంచయం" ); diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index b480237008b..bfdc1c072f4 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,7 +30,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "undo" => "เลิกทำ", "perform delete operation" => "ดำเนินการตามคำสั่งลบ", -"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "การอัพโหลดไฟล์", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", @@ -42,10 +42,8 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"1 folder" => "1 โฟลเดอร์", -"{count} folders" => "{count} โฟลเดอร์", -"1 file" => "1 ไฟล์", -"{count} files" => "{count} ไฟล์", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 351b23cb951..9c597142210 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "undo" => "geri al", "perform delete operation" => "Silme işlemini gerçekleştir", -"1 file uploading" => "1 dosya yüklendi", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "Dosyalar yükleniyor", "'.' is an invalid file name." => "'.' geçersiz dosya adı.", "File name cannot be empty." => "Dosya adı boş olamaz.", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"1 folder" => "1 dizin", -"{count} folders" => "{count} dizin", -"1 file" => "1 dosya", -"{count} files" => "{count} dosya", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", "File handling" => "Dosya taşıma", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 819b46c50c2..0b649b9eeb2 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -21,14 +21,13 @@ $TRANSLATIONS = array( "suggest name" => "تەۋسىيە ئات", "cancel" => "ۋاز كەچ", "undo" => "يېنىۋال", -"1 file uploading" => "1 ھۆججەت يۈكلىنىۋاتىدۇ", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ", "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"1 folder" => "1 قىسقۇچ", -"1 file" => "1 ھۆججەت", -"{count} files" => "{count} ھۆججەت", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index ad40f16e8b6..122f0c696a8 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "undo" => "відмінити", "perform delete operation" => "виконати операцію видалення", -"1 file uploading" => "1 файл завантажується", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлів", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s не може бути перейменований", "Upload" => "Вивантажити", "File handling" => "Робота з файлами", diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php index 1f083455369..8cdde14c26d 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,6 +1,9 @@ "ایرر", +"_Uploading %n file_::_Uploading %n files_" => array(,), +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Unshare" => "شئیرنگ ختم کریں" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 4d0240c9baa..e778c0c3747 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "undo" => "lùi lại", "perform delete operation" => "thực hiện việc xóa", -"1 file uploading" => "1 tệp tin đang được tải lên", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "tệp tin đang được tải lên", "'.' is an invalid file name." => "'.' là một tên file không hợp lệ", "File name cannot be empty." => "Tên file không được rỗng", @@ -43,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", -"1 folder" => "1 thư mục", -"{count} folders" => "{count} thư mục", -"1 file" => "1 tập tin", -"{count} files" => "{count} tập tin", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 9b08b5dda22..87177458a73 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", "perform delete operation" => "执行删除", -"1 file uploading" => "1 个文件正在上传", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "个文件正在上传", "'.' is an invalid file name." => "'.' 文件名不正确", "File name cannot be empty." => "文件名不能为空", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"1 folder" => "1 个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "不能重命名 %s", "Upload" => "上传", "File handling" => "文件处理中", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index d4bf220590b..248ca127044 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", "perform delete operation" => "进行删除操作", -"1 file uploading" => "1个文件上传中", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "文件上传中", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"1 folder" => "1个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "%s 不能被重命名", "Upload" => "上传", "File handling" => "文件处理", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 1f309d9b2f6..9e806a2fbff 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -4,8 +4,10 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Share" => "分享", "Delete" => "刪除", +"_Uploading %n file_::_Uploading %n files_" => array(,), "Name" => "名稱", -"{count} folders" => "{}文件夾", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Upload" => "上傳", "Save" => "儲存", "Download" => "下載", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 6e0dd54fddc..620405b7b9f 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", "perform delete operation" => "進行刪除動作", -"1 file uploading" => "1 個檔案正在上傳", +"_Uploading %n file_::_Uploading %n files_" => array(,), "files uploading" => "檔案正在上傳中", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", @@ -46,10 +46,8 @@ $TRANSLATIONS = array( "Name" => "名稱", "Size" => "大小", "Modified" => "修改", -"1 folder" => "1 個資料夾", -"{count} folders" => "{count} 個資料夾", -"1 file" => "1 個檔案", -"{count} files" => "{count} 個檔案", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 8bd47239385..e2b3be3261a 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", +"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." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější, a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 19e6b1d2e8c..1b7069b6784 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer.", "Missing requirements." => "Manglende betingelser.", +"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." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", +"Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", "Saving..." => "Gemmer...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.", "You can unlock your private key in your " => "Du kan låse din private nøgle op i din ", diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index ccb80f959ec..2fc2aed26ed 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف بشكل دائم", "Name" => "اسم", "Deleted" => "تم الحذف", -"1 folder" => "مجلد عدد 1", -"{count} folders" => "{count} مجلدات", -"1 file" => "ملف واحد", -"{count} files" => "{count} ملفات", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Restore" => "استعيد", "Delete" => "إلغاء", diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 5ae41a324af..7f4c7493b36 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Изтриване завинаги", "Name" => "Име", "Deleted" => "Изтрито", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 файл", -"{count} files" => "{count} файла", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", "Restore" => "Възтановяване", "Delete" => "Изтриване", diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index a33a6de89af..e512b2360b5 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"1 folder" => "১টি ফোল্ডার", -"{count} folders" => "{count} টি ফোল্ডার", -"1 file" => "১টি ফাইল", -"{count} files" => "{count} টি ফাইল", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 2e4fa4dbe08..8ab3d785f73 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Esborra permanentment", "Name" => "Nom", "Deleted" => "Eliminat", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetes", -"1 file" => "1 fitxer", -"{count} files" => "{count} fitxers", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", "Restore" => "Recupera", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index eef9accb83e..cd1acc5eb0d 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trvale odstranit", "Name" => "Název", "Deleted" => "Smazáno", -"1 folder" => "1 složka", -"{count} folders" => "{count} složky", -"1 file" => "1 soubor", -"{count} files" => "{count} soubory", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", "Restore" => "Obnovit", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index af0c5239b56..df3b67b8df8 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Dileu'n barhaol", "Name" => "Enw", "Deleted" => "Wedi dileu", -"1 folder" => "1 blygell", -"{count} folders" => "{count} plygell", -"1 file" => "1 ffeil", -"{count} files" => "{count} ffeil", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", "Restore" => "Adfer", "Delete" => "Dileu", diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 4e0bbc23a8e..adee29a6df2 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slet permanent", "Name" => "Navn", "Deleted" => "Slettet", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 856317f3c6f..ced25d80af8 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "gelöscht", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index bd1e3fb9e2b..4813b70fdbf 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "Gelöscht", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 19331cd1f6f..506992d9119 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Μόνιμη διαγραφή", "Name" => "Όνομα", "Deleted" => "Διαγράφηκε", -"1 folder" => "1 φάκελος", -"{count} folders" => "{count} φάκελοι", -"1 file" => "1 αρχείο", -"{count} files" => "{count} αρχεία", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Restore" => "Επαναφορά", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 373a503fc66..fb60d7a0aa8 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eraro", "Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"1 folder" => "1 dosierujo", -"{count} folders" => "{count} dosierujoj", -"1 file" => "1 dosiero", -"{count} files" => "{count} dosierujoj", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index 58e5c6c9035..564f80f634c 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetas", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", "Restore" => "Recuperar", diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 98f140983ca..0a8be563f91 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Borrar de manera permanente", "Name" => "Nombre", "Deleted" => "Borrado", -"1 folder" => "1 directorio", -"{count} folders" => "{count} directorios", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", "Restore" => "Recuperar", "Delete" => "Borrar", diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 293d639b42f..44a7ea28550 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Kustuta jäädavalt", "Name" => "Nimi", "Deleted" => "Kustutatud", -"1 folder" => "1 kaust", -"{count} folders" => "{count} kausta", -"1 file" => "1 fail", -"{count} files" => "{count} faili", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", "Restore" => "Taasta", diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 2649124836f..7156a66bfbf 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ezabatu betirako", "Name" => "Izena", "Deleted" => "Ezabatuta", -"1 folder" => "karpeta bat", -"{count} folders" => "{count} karpeta", -"1 file" => "fitxategi bat", -"{count} files" => "{count} fitxategi", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", "Restore" => "Berrezarri", "Delete" => "Ezabatu", diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 33a8d418ccf..9d5613ce8e0 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف قطعی", "Name" => "نام", "Deleted" => "حذف شده", -"1 folder" => "1 پوشه", -"{count} folders" => "{ شمار} پوشه ها", -"1 file" => "1 پرونده", -"{count} files" => "{ شمار } فایل ها", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", "Restore" => "بازیابی", "Delete" => "حذف", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index fec0567fbec..9dec2975f31 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Poista pysyvästi", "Name" => "Nimi", "Deleted" => "Poistettu", -"1 folder" => "1 kansio", -"{count} folders" => "{count} kansiota", -"1 file" => "1 tiedosto", -"{count} files" => "{count} tiedostoa", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", "Restore" => "Palauta", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 17c524d712d..0581cf6efed 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Supprimer de façon définitive", "Name" => "Nom", "Deleted" => "Effacé", -"1 folder" => "1 dossier", -"{count} folders" => "{count} dossiers", -"1 file" => "1 fichier", -"{count} files" => "{count} fichiers", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", "Restore" => "Restaurer", "Delete" => "Supprimer", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 9b222e6e15f..e4e72a9e469 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Eliminado", -"1 folder" => "1 cartafol", -"{count} folders" => "{count} cartafoles", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", "Restore" => "Restablecer", diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 1a0e3f4772c..98c846c502c 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "מחיקה לצמיתות", "Name" => "שם", "Deleted" => "נמחק", -"1 folder" => "תיקייה אחת", -"{count} folders" => "{count} תיקיות", -"1 file" => "קובץ אחד", -"{count} files" => "{count} קבצים", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", "Restore" => "שחזור", "Delete" => "מחיקה", diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index 8e8fd22f8ef..a635278cb67 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Obriši" ); $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;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 7ed9eb7eba7..299d252c1e7 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Végleges törlés", "Name" => "Név", "Deleted" => "Törölve", -"1 folder" => "1 mappa", -"{count} folders" => "{count} mappa", -"1 file" => "1 fájl", -"{count} files" => "{count} fájl", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", "Restore" => "Visszaállítás", diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index f933bec8feb..127ae408214 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,5 +1,7 @@ array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index 7709ef030e3..6df843b2882 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 4fbe154963a..82c01e4da7b 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Hapus secara permanen", "Name" => "Nama", "Deleted" => "Dihapus", -"1 folder" => "1 folder", -"{count} folders" => "{count} folder", -"1 file" => "1 berkas", -"{count} files" => "{count} berkas", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", "Restore" => "Pulihkan", "Delete" => "Hapus", diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 1cf794db976..adf462e3872 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"1 folder" => "1 mappa", -"{count} folders" => "{count} möppur", -"1 file" => "1 skrá", -"{count} files" => "{count} skrár", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 0843cd5c2ec..d4e6752ae7e 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimina definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", -"1 folder" => "1 cartella", -"{count} folders" => "{count} cartelle", -"1 file" => "1 file", -"{count} files" => "{count} file", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 40fc0ded83b..2542684a060 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "完全に削除する", "Name" => "名前", "Deleted" => "削除済み", -"1 folder" => "1 フォルダ", -"{count} folders" => "{count} フォルダ", -"1 file" => "1 ファイル", -"{count} files" => "{count} ファイル", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", "Restore" => "復元", diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 63906136425..3b29642c629 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "სრულად წაშლა", "Name" => "სახელი", "Deleted" => "წაშლილი", -"1 folder" => "1 საქაღალდე", -"{count} folders" => "{count} საქაღალდე", -"1 file" => "1 ფაილი", -"{count} files" => "{count} ფაილი", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", "Restore" => "აღდგენა", "Delete" => "წაშლა", diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 68845b5472e..fc0a4ca2de2 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "오류", "Delete permanently" => "영원히 삭제", "Name" => "이름", -"1 folder" => "폴더 1개", -"{count} folders" => "폴더 {count}개", -"1 file" => "파일 1개", -"{count} files" => "파일 {count}개", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Restore" => "복원", "Delete" => "삭제" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index c1962a4075d..6c73695dc15 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,6 +1,8 @@ "هه‌ڵه", -"Name" => "ناو" +"Name" => "ناو", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,) ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index b434ae72176..08be3e20f1f 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 4fd43bd17b2..197c9b250f6 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ištrinti negrįžtamai", "Name" => "Pavadinimas", "Deleted" => "Ištrinti", -"1 folder" => "1 aplankalas", -"{count} folders" => "{count} aplankalai", -"1 file" => "1 failas", -"{count} files" => "{count} failai", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", "Restore" => "Atstatyti", "Delete" => "Ištrinti", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index 5753162e29d..a7c0bc326e2 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Dzēst pavisam", "Name" => "Nosaukums", "Deleted" => "Dzēsts", -"1 folder" => "1 mape", -"{count} folders" => "{count} mapes", -"1 file" => "1 datne", -"{count} files" => "{count} datnes", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", "Restore" => "Atjaunot", "Delete" => "Dzēst", diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 078140039b4..190445fe91a 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеки", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1972eba0318..9c70b4ae0a9 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index e650904a412..ca81b33621d 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett permanent", "Name" => "Navn", "Deleted" => "Slettet", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 21b6d393781..2de36ece52a 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Verwijder definitief", "Name" => "Naam", "Deleted" => "Verwijderd", -"1 folder" => "1 map", -"{count} folders" => "{count} mappen", -"1 file" => "1 bestand", -"{count} files" => "{count} bestanden", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", "Restore" => "Herstellen", diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 3e1f9b819a8..eb50b04ec4b 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett for godt", "Name" => "Namn", "Deleted" => "Sletta", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index b472683f08d..656b688987d 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index d31a671eb58..000d6b69381 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trwale usuń", "Name" => "Nazwa", "Deleted" => "Usunięte", -"1 folder" => "1 folder", -"{count} folders" => "Ilość folderów: {count}", -"1 file" => "1 plik", -"{count} files" => "Ilość plików: {count}", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", "Restore" => "Przywróć", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 26eea51b819..b1137672e50 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Excluir permanentemente", "Name" => "Nome", "Deleted" => "Excluído", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 arquivo", -"{count} files" => "{count} arquivos", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 15213892d2a..7fae2628015 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Apagado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 3c38f16b392..cb47682f323 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"1 folder" => "1 folder", -"{count} folders" => "{count} foldare", -"1 file" => "1 fisier", -"{count} files" => "{count} fisiere", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index d883115281e..c76659b232f 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Удалено навсегда", "Name" => "Имя", "Deleted" => "Удалён", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлов", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Restore" => "Восстановить", diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 9de1c00989e..54700566f35 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"1 folder" => "1 ෆොල්ඩරයක්", -"1 file" => "1 ගොනුවක්", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 552a69f4fcb..727d900b9cd 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Zmazať trvalo", "Name" => "Názov", "Deleted" => "Zmazané", -"1 folder" => "1 priečinok", -"{count} folders" => "{count} priečinkov", -"1 file" => "1 súbor", -"{count} files" => "{count} súborov", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", "Restore" => "Obnoviť", diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index 4140bb8d59a..4a44e144def 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Izbriši dokončno", "Name" => "Ime", "Deleted" => "Izbrisano", -"1 folder" => "1 mapa", -"{count} folders" => "{count} map", -"1 file" => "1 datoteka", -"{count} files" => "{count} datotek", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", "Restore" => "Obnovi", "Delete" => "Izbriši", diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index a0dae065b70..c5fb62e84fb 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimino përfundimisht", "Name" => "Emri", "Deleted" => "Eliminuar", -"1 folder" => "1 dosje", -"{count} folders" => "{count} dosje", -"1 file" => "1 skedar", -"{count} files" => "{count} skedarë", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", "Restore" => "Rivendos", "Delete" => "Elimino", diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 8302df5f262..97c9f78dc14 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -5,10 +5,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", -"1 folder" => "1 фасцикла", -"{count} folders" => "{count} фасцикле/и", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеке/а", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", "Restore" => "Врати", "Delete" => "Обриши" diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index 0511d9f609d..bd1a26abf66 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -1,6 +1,8 @@ "Ime", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "Obriši" ); $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);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 9eb83734b49..c8f79dbdb65 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Radera permanent", "Name" => "Namn", "Deleted" => "Raderad", -"1 folder" => "1 mapp", -"{count} folders" => "{count} mappar", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", "Restore" => "Återskapa", diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index 35253900b19..12e9e66af54 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"1 folder" => "1 கோப்புறை", -"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", -"1 file" => "1 கோப்பு", -"{count} files" => "{எண்ணிக்கை} கோப்புகள்", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index f89a9fda5f7..6fdbc7320b2 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -3,6 +3,8 @@ $TRANSLATIONS = array( "Error" => "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index dc49155b9be..a1e397bbe50 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -4,10 +4,8 @@ $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Deleted" => "ลบแล้ว", -"1 folder" => "1 โฟลเดอร์", -"{count} folders" => "{count} โฟลเดอร์", -"1 file" => "1 ไฟล์", -"{count} files" => "{count} ไฟล์", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", "Restore" => "คืนค่า", "Delete" => "ลบ", diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index df1b692af51..dec1b35a79a 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Kalıcı olarak sil", "Name" => "İsim", "Deleted" => "Silindi", -"1 folder" => "1 dizin", -"{count} folders" => "{count} dizin", -"1 file" => "1 dosya", -"{count} files" => "{count} dosya", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", "Restore" => "Geri yükle", "Delete" => "Sil", diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index 65466685971..6ac41cea50f 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -4,9 +4,8 @@ $TRANSLATIONS = array( "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"1 folder" => "1 قىسقۇچ", -"1 file" => "1 ھۆججەت", -"{count} files" => "{count} ھۆججەت", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index 93e9b6aa7b0..2b07b7ecfe2 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Видалити назавжди", "Name" => "Ім'я", "Deleted" => "Видалено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлів", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Restore" => "Відновити", diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index 49c82f53872..63e0e39bba2 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,5 +1,7 @@ "ایرر" +"Error" => "ایرر", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,) ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 5e16a8392dd..e83a273a909 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Xóa vĩnh vễn", "Name" => "Tên", "Deleted" => "Đã xóa", -"1 folder" => "1 thư mục", -"{count} folders" => "{count} thư mục", -"1 file" => "1 tập tin", -"{count} files" => "{count} tập tin", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", "Restore" => "Khôi phục", "Delete" => "Xóa", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 768a9616d71..ea97c168f15 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "出错", "Delete permanently" => "永久删除", "Name" => "名称", -"1 folder" => "1 个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "删除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index c149c6c966c..9e262d5cb88 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久删除", "Name" => "名称", "Deleted" => "已删除", -"1 folder" => "1个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", "Restore" => "恢复", "Delete" => "删除", diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 6b9f6506874..a8741a41829 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,7 +2,8 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"{count} folders" => "{}文件夾", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index 39fe4ce988a..d6c54614c2c 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", -"1 folder" => "1 個資料夾", -"{count} folders" => "{count} 個資料夾", -"1 file" => "1 個檔案", -"{count} files" => "{count} 個檔案", +"_%n folder_::_%n folders_" => array(,), +"_%n file_::_%n files_" => array(,), "Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index ab94e946110..17058ba0bfb 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,6 +1,10 @@ "Instellings", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Password" => "Wagwoord", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 0f84d5da76c..194aac3c2be 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "كانون الاول", "Settings" => "إعدادات", "seconds ago" => "منذ ثواني", -"1 minute ago" => "منذ دقيقة", -"{minutes} minutes ago" => "{minutes} منذ دقائق", -"1 hour ago" => "قبل ساعة مضت", -"{hours} hours ago" => "{hours} ساعة مضت", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "اليوم", "yesterday" => "يوم أمس", -"{days} days ago" => "{days} يوم سابق", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "الشهر الماضي", -"{months} months ago" => "{months} شهر مضت", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "تم ارسال البريد الالكتروني", "The update was unsuccessful. Please report this issue to the ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud", -"ownCloud password reset" => "إعادة تعيين كلمة سر ownCloud", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", "Username" => "إسم المستخدم", diff --git a/core/l10n/be.php b/core/l10n/be.php index fa6f4e0404a..fcc2608fe50 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -1,5 +1,9 @@ array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Advanced" => "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку.", "prev" => "Папярэдняя", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 57eccb1613c..c8127633986 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -22,11 +22,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Настройки", "seconds ago" => "преди секунди", -"1 minute ago" => "преди 1 минута", -"1 hour ago" => "преди 1 час", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "днес", "yesterday" => "вчера", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "последният месец", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "последната година", "years ago" => "последните години", "Cancel" => "Отказ", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index eeb141474ad..72a69fe8e61 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "ডিসেম্বর", "Settings" => "নিয়ামকসমূহ", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "১ মিনিট পূর্বে", -"{minutes} minutes ago" => "{minutes} মিনিট পূর্বে", -"1 hour ago" => "1 ঘন্টা পূর্বে", -"{hours} hours ago" => "{hours} ঘন্টা পূর্বে", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "আজ", "yesterday" => "গতকাল", -"{days} days ago" => "{days} দিন পূর্বে", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "গত মাস", -"{months} months ago" => "{months} মাস পূর্বে", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", @@ -80,7 +78,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে", "Sending ..." => "পাঠানো হচ্ছে......", "Email sent" => "ই-মেইল পাঠানো হয়েছে", -"ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ", "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 4cb1978faf2..624a8b7e16a 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -1,5 +1,9 @@ array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Share" => "Podijeli", "Add" => "Dodaj" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index acf32c7dc0f..5c6ca8d2f87 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Desembre", "Settings" => "Configuració", "seconds ago" => "segons enrere", -"1 minute ago" => "fa 1 minut", -"{minutes} minutes ago" => "fa {minutes} minuts", -"1 hour ago" => "fa 1 hora", -"{hours} hours ago" => "fa {hours} hores", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "avui", "yesterday" => "ahir", -"{days} days ago" => "fa {days} dies", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "el mes passat", -"{months} months ago" => "fa {months} mesos", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "El correu electrónic s'ha enviat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", -"ownCloud password reset" => "estableix de nou la contrasenya Owncloud", "Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}", "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 ." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu.
    Si no el rebeu en un temps raonable comproveu les carpetes de spam.
    Si no és allà, pregunteu a l'administrador local.", "Request failed!
    Did you make sure your email/username was right?" => "La petició ha fallat!
    Esteu segur que el correu/nom d'usuari és correcte?", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 126de8858cc..c62cc1f126a 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Prosinec", "Settings" => "Nastavení", "seconds ago" => "před pár vteřinami", -"1 minute ago" => "před minutou", -"{minutes} minutes ago" => "před {minutes} minutami", -"1 hour ago" => "před hodinou", -"{hours} hours ago" => "před {hours} hodinami", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dnes", "yesterday" => "včera", -"{days} days ago" => "před {days} dny", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "minulý měsíc", -"{months} months ago" => "před {months} měsíci", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail odeslán", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", -"ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "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 ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
    Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
    Pokud jej nenaleznete, kontaktujte svého správce.", "Request failed!
    Did you make sure your email/username was right?" => "Požadavek selhal!
    Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Dokončit nastavení", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", +"More apps" => "Více aplikací", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", "If you did not change your password recently, your account may be compromised!" => "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 4b20c05167e..30c8b5aba6b 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Rhagfyr", "Settings" => "Gosodiadau", "seconds ago" => "eiliad yn ôl", -"1 minute ago" => "1 munud yn ôl", -"{minutes} minutes ago" => "{minutes} munud yn ôl", -"1 hour ago" => "1 awr yn ôl", -"{hours} hours ago" => "{hours} awr yn ôl", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "heddiw", "yesterday" => "ddoe", -"{days} days ago" => "{days} diwrnod yn ôl", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "mis diwethaf", -"{months} months ago" => "{months} mis yn ôl", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Anfonwyd yr e-bost", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", -"ownCloud password reset" => "ailosod cyfrinair ownCloud", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", "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 ." => "Anfonwyd y ddolen i ailosod eich cyfrinair i'ch cyfeiriad ebost.
    Os nad yw'n cyrraedd o fewn amser rhesymol gwiriwch eich plygell spam/sothach.
    Os nad yw yno, cysylltwch â'ch gweinyddwr lleol.", "Request failed!
    Did you make sure your email/username was right?" => "Methodd y cais!
    Gwiriwch eich enw defnyddiwr ac ebost.", diff --git a/core/l10n/da.php b/core/l10n/da.php index ed5a0b67a93..2ca23b785c7 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Indstillinger", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minut siden", -"{minutes} minutes ago" => "{minutes} minutter siden", -"1 hour ago" => "1 time siden", -"{hours} hours ago" => "{hours} timer siden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dage siden", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "sidste måned", -"{months} months ago" => "{months} måneder siden", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", @@ -86,12 +84,12 @@ $TRANSLATIONS = array( "Email sent" => "E-mail afsendt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", -"ownCloud password reset" => "Nulstil ownCloud kodeord", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "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 ." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post.
    Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.
    Hvis det ikke er der, så spørg din lokale administrator.", "Request failed!
    Did you make sure your email/username was right?" => "Anmodning mislykkedes!
    Er du sikker på at din e-post / brugernavn var korrekt?", "You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", "Username" => "Brugernavn", +"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?" => "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode. HVis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter. Vil du fortsætte?", "Yes, I really want to reset my password now" => "Ja, Jeg ønsker virkelig at nulstille mit kodeord", "Request reset" => "Anmod om nulstilling", "Your password was reset" => "Dit kodeord blev nulstillet", @@ -105,6 +103,7 @@ $TRANSLATIONS = array( "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", @@ -113,6 +112,7 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uden en sikker tilfældighedsgenerator til tal kan en angriber måske gætte dit gendan kodeord og overtage din konto", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", +"For information how to properly configure your server, please see the documentation." => "For information om, hvordan du konfigurerer din server korrekt se dokumentationen.", "Create an admin account" => "Opret en administratorkonto", "Advanced" => "Avanceret", "Data folder" => "Datamappe", @@ -126,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Afslut opsætning", "%s is available. Get more information on how to update." => "%s er tilgængelig. Få mere information om, hvordan du opdaterer.", "Log out" => "Log ud", +"More apps" => "Flere programmer", "Automatic logon rejected!" => "Automatisk login afvist!", "If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!", "Please change your password to secure your account again." => "Skift adgangskode for at sikre din konto igen.", @@ -133,6 +134,7 @@ $TRANSLATIONS = array( "remember" => "husk", "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", +"Hey there,

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

    Cheers!" => "Hallo,

    dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
    Se det!

    Hej", "prev" => "forrige", "next" => "næste", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid." diff --git a/core/l10n/de.php b/core/l10n/de.php index 15847370f92..9ec4044b87b 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "vor einer Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-Mail wurde verschickt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}", "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 ." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
    Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
    Wenn er nicht dort ist, frage Deinen lokalen Administrator.", "Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?", @@ -129,7 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", -"More apps" => "Weitere Anwendungen", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php new file mode 100644 index 00000000000..9f5278e8790 --- /dev/null +++ b/core/l10n/de_AT.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(,), +"More apps" => "Mehr Apps" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index a6061a2b1e4..9eae0de3077 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email gesendet", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "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 ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschliessen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index e019bf4e8ff..1b7397f26ac 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email gesendet", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "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 ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", @@ -129,7 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", -"More apps" => "Weitere Anwendungen", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", diff --git a/core/l10n/el.php b/core/l10n/el.php index 71b4fd22174..11abe93d3ef 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Δεκέμβριος", "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", -"1 minute ago" => "1 λεπτό πριν", -"{minutes} minutes ago" => "{minutes} λεπτά πριν", -"1 hour ago" => "1 ώρα πριν", -"{hours} hours ago" => "{hours} ώρες πριν", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "σήμερα", "yesterday" => "χτες", -"{days} days ago" => "{days} ημέρες πριν", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "τελευταίο μήνα", -"{months} months ago" => "{months} μήνες πριν", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Το Email απεστάλη ", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", -"ownCloud password reset" => "Επαναφορά συνθηματικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "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 ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
    αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
    αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!
    Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index e269c57c3d0..1b271cf5fe6 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,5 +1,9 @@ array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Password" => "Passcode" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 7ae5d654269..9ce2c88a56c 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembro", "Settings" => "Agordo", "seconds ago" => "sekundoj antaŭe", -"1 minute ago" => "antaŭ 1 minuto", -"{minutes} minutes ago" => "antaŭ {minutes} minutoj", -"1 hour ago" => "antaŭ 1 horo", -"{hours} hours ago" => "antaŭ {hours} horoj", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"{days} days ago" => "antaŭ {days} tagoj", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "lastamonate", -"{months} months ago" => "antaŭ {months} monatoj", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "La retpoŝtaĵo sendiĝis", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", -"ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", "Request failed!
    Did you make sure your email/username was right?" => "La peto malsukcesis!
    Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", diff --git a/core/l10n/es.php b/core/l10n/es.php index 9e25f154a48..3f4cfa8d11d 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Diciembre", "Settings" => "Ajustes", "seconds ago" => "hace segundos", -"1 minute ago" => "hace 1 minuto", -"{minutes} minutes ago" => "hace {minutes} minutos", -"1 hour ago" => "Hace 1 hora", -"{hours} hours ago" => "Hace {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoy", "yesterday" => "ayer", -"{days} days ago" => "hace {days} días", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "el mes pasado", -"{months} months ago" => "Hace {months} meses", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "hace meses", "last year" => "el año pasado", "years ago" => "hace años", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Correo electrónico enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", -"ownCloud password reset" => "Reseteo contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer su contraseña: {link}", "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 ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local.", "Request failed!
    Did you make sure your email/username was right?" => "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 6367ba07f5f..c4e5954d9dc 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "diciembre", "Settings" => "Configuración", "seconds ago" => "segundos atrás", -"1 minute ago" => "hace 1 minuto", -"{minutes} minutes ago" => "hace {minutes} minutos", -"1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "hace {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoy", "yesterday" => "ayer", -"{days} days ago" => "hace {days} días", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "el mes pasado", -"{months} months ago" => "{months} meses atrás", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "e-mail mandado", "The update was unsuccessful. Please report this issue to the
    ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", -"ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", "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 ." => "El enlace para restablecer la contraseña fue enviada a tu e-mail.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador.", "Request failed!
    Did you make sure your email/username was right?" => "¡Error en el pedido!
    ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 0bc121d21fb..1d1530ecff2 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Detsember", "Settings" => "Seaded", "seconds ago" => "sekundit tagasi", -"1 minute ago" => "1 minut tagasi", -"{minutes} minutes ago" => "{minutes} minutit tagasi", -"1 hour ago" => "1 tund tagasi", -"{hours} hours ago" => "{hours} tundi tagasi", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "täna", "yesterday" => "eile", -"{days} days ago" => "{days} päeva tagasi", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "viimasel kuul", -"{months} months ago" => "{months} kuud tagasi", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-kiri on saadetud", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.", "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", -"ownCloud password reset" => "ownCloud parooli taastamine", "Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}", "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 ." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressile.
    Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.
    Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.", "Request failed!
    Did you make sure your email/username was right?" => "Päring ebaõnnestus!
    Oled sa veendunud, et e-post/kasutajanimi on õiged?", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index f3b790ccb58..180c39fd677 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Abendua", "Settings" => "Ezarpenak", "seconds ago" => "segundu", -"1 minute ago" => "orain dela minutu 1", -"{minutes} minutes ago" => "orain dela {minutes} minutu", -"1 hour ago" => "orain dela ordu bat", -"{hours} hours ago" => "orain dela {hours} ordu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "gaur", "yesterday" => "atzo", -"{days} days ago" => "orain dela {days} egun", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "joan den hilabetean", -"{months} months ago" => "orain dela {months} hilabete", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Eposta bidalia", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", -"ownCloud password reset" => "ownCloud-en pasahitza berrezarri", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}", "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 ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
    Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
    Hor ere ez badago kudeatzailearekin harremanetan ipini.", "Request failed!
    Did you make sure your email/username was right?" => "Eskaerak huts egin du!
    Ziur zaude posta/pasahitza zuzenak direla?", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 0eef756200a..03542c2123b 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "دسامبر", "Settings" => "تنظیمات", "seconds ago" => "ثانیه‌ها پیش", -"1 minute ago" => "1 دقیقه پیش", -"{minutes} minutes ago" => "{دقیقه ها} دقیقه های پیش", -"1 hour ago" => "1 ساعت پیش", -"{hours} hours ago" => "{ساعت ها} ساعت ها پیش", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "امروز", "yesterday" => "دیروز", -"{days} days ago" => "{روزها} روزهای پیش", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "ماه قبل", -"{months} months ago" => "{ماه ها} ماه ها پیش", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "ایمیل ارسال شد", "The update was unsuccessful. Please report this issue to the ownCloud community." => "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید.", "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", -"ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", "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 ." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
    اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
    در صورت نبودن از مدیر خود بپرسید.", "Request failed!
    Did you make sure your email/username was right?" => "درخواست رد شده است !
    آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e6da2c28201..90fa84e4eb4 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "joulukuu", "Settings" => "Asetukset", "seconds ago" => "sekuntia sitten", -"1 minute ago" => "1 minuutti sitten", -"{minutes} minutes ago" => "{minutes} minuuttia sitten", -"1 hour ago" => "1 tunti sitten", -"{hours} hours ago" => "{hours} tuntia sitten", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "tänään", "yesterday" => "eilen", -"{days} days ago" => "{days} päivää sitten", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "viime kuussa", -"{months} months ago" => "{months} kuukautta sitten", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", @@ -81,7 +79,6 @@ $TRANSLATIONS = array( "Email sent" => "Sähköposti lähetetty", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", -"ownCloud password reset" => "ownCloud-salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "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 ." => "Linkki salasanan nollaamiseen on lähetetty sähköpostiisi.
    Jos et saa viestiä pian, tarkista roskapostikansiosi.
    Jos et löydä viestiä roskapostinkaan seasta, ota yhteys ylläpitäjään.", "Request failed!
    Did you make sure your email/username was right?" => "Pyyntö epäonnistui!
    Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index b5d8a90e34c..4f7d6cb47f9 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "décembre", "Settings" => "Paramètres", "seconds ago" => "il y a quelques secondes", -"1 minute ago" => "il y a une minute", -"{minutes} minutes ago" => "il y a {minutes} minutes", -"1 hour ago" => "Il y a une heure", -"{hours} hours ago" => "Il y a {hours} heures", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "aujourd'hui", "yesterday" => "hier", -"{days} days ago" => "il y a {days} jours", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "le mois dernier", -"{months} months ago" => "Il y a {months} mois", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email envoyé", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", -"ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "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 ." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis.
    Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
    Au besoin, contactez votre administrateur local.", "Request failed!
    Did you make sure your email/username was right?" => "Requête en échec!
    Avez-vous vérifié vos courriel/nom d'utilisateur?", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 1c51d8443a3..9822d88aee0 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "decembro", "Settings" => "Axustes", "seconds ago" => "segundos atrás", -"1 minute ago" => "hai 1 minuto", -"{minutes} minutes ago" => "hai {minutes} minutos", -"1 hour ago" => "Vai 1 hora", -"{hours} hours ago" => "hai {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoxe", "yesterday" => "onte", -"{days} days ago" => "hai {days} días", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "último mes", -"{months} months ago" => "hai {months} meses", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Correo enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.", -"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", "Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}", "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 ." => "Envióuselle ao seu correo unha ligazón para restabelecer o seu contrasinal.
    Se non o recibe nun prazo razoábel de tempo, revise o seu cartafol de correo lixo ou de non desexados.
    Se non o atopa aí pregúntelle ao seu administrador local..", "Request failed!
    Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
    Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", diff --git a/core/l10n/he.php b/core/l10n/he.php index c5fed42db8f..7cb0ebe1470 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "דצמבר", "Settings" => "הגדרות", "seconds ago" => "שניות", -"1 minute ago" => "לפני דקה אחת", -"{minutes} minutes ago" => "לפני {minutes} דקות", -"1 hour ago" => "לפני שעה", -"{hours} hours ago" => "לפני {hours} שעות", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "היום", "yesterday" => "אתמול", -"{days} days ago" => "לפני {days} ימים", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "חודש שעבר", -"{months} months ago" => "לפני {months} חודשים", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "הודעת הדוא״ל נשלחה", "The update was unsuccessful. Please report this issue to the ownCloud community." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.", -"ownCloud password reset" => "איפוס הססמה של ownCloud", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", "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 ." => "הקישור לאיפוס הססמה שלך נשלח אליך בדוא״ל.
    אם לא קיבלת את הקישור תוך זמן סביר, מוטב לבדוק את תיבת הזבל שלך.
    אם ההודעה לא שם, כדאי לשאול את מנהל הרשת שלך .", "Request failed!
    Did you make sure your email/username was right?" => "הבקשה נכשלה!
    האם כתובת הדוא״ל/שם המשתמש שלך נכונים?", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 37ac5d8ae0d..60b834ef5db 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -13,6 +13,10 @@ $TRANSLATIONS = array( "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Error" => "त्रुटि", "Share" => "साझा करें", "Share with" => "के साथ साझा", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 856a3019fb1..9bdad09f741 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -23,9 +23,13 @@ $TRANSLATIONS = array( "December" => "Prosinac", "Settings" => "Postavke", "seconds ago" => "sekundi prije", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "danas", "yesterday" => "jučer", +"_%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", @@ -58,7 +62,6 @@ $TRANSLATIONS = array( "Password protected" => "Zaštita lozinkom", "Error unsetting expiration date" => "Greška prilikom brisanja datuma isteka", "Error setting expiration date" => "Greška prilikom postavljanja datuma isteka", -"ownCloud password reset" => "ownCloud resetiranje lozinke", "Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}", "You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.", "Username" => "Korisničko ime", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 68c519f7e7d..aca30e2dfc7 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Beállítások", "seconds ago" => "pár másodperce", -"1 minute ago" => "1 perce", -"{minutes} minutes ago" => "{minutes} perce", -"1 hour ago" => "1 órája", -"{hours} hours ago" => "{hours} órája", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ma", "yesterday" => "tegnap", -"{days} days ago" => "{days} napja", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "múlt hónapban", -"{months} months ago" => "{months} hónapja", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Az emailt elküldtük", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", -"ownCloud password reset" => "ownCloud jelszó-visszaállítás", "Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}", "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 ." => "Emailben fog kapni egy linket, amivel új jelszót tud majd beállítani magának.
    Ha a levél nem jött meg, holott úgy érzi, hogy már meg kellett volna érkeznie, akkor ellenőrizze a spam/levélszemét mappáját.
    Ha ott sincsen, akkor érdeklődjön a rendszergazdánál.", "Request failed!
    Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni!
    Biztos, hogy jó emailcímet/felhasználónevet adott meg?", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index ac1006dd9ad..a97f05cb109 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -18,6 +18,10 @@ $TRANSLATIONS = array( "September" => "Սեպտեմբեր", "October" => "Հոկտեմբեր", "November" => "Նոյեմբեր", -"December" => "Դեկտեմբեր" +"December" => "Դեկտեմբեր", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ia.php b/core/l10n/ia.php index e02a38d3a09..75ad8ae4fb3 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -20,12 +20,15 @@ $TRANSLATIONS = array( "November" => "Novembre", "December" => "Decembre", "Settings" => "Configurationes", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Cancel" => "Cancellar", "Error" => "Error", "Share" => "Compartir", "Password" => "Contrasigno", "Send" => "Invia", -"ownCloud password reset" => "Reinitialisation del contrasigno de ownCLoud", "Username" => "Nomine de usator", "Request reset" => "Requestar reinitialisation", "Your password was reset" => "Tu contrasigno esseva reinitialisate", diff --git a/core/l10n/id.php b/core/l10n/id.php index e0bc733f90b..f4b17d03953 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Setelan", "seconds ago" => "beberapa detik yang lalu", -"1 minute ago" => "1 menit yang lalu", -"{minutes} minutes ago" => "{minutes} menit yang lalu", -"1 hour ago" => "1 jam yang lalu", -"{hours} hours ago" => "{hours} jam yang lalu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hari ini", "yesterday" => "kemarin", -"{days} days ago" => "{days} hari yang lalu", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "bulan kemarin", -"{months} months ago" => "{months} bulan yang lalu", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Email terkirim", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", -"ownCloud password reset" => "Setel ulang sandi ownCloud", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima tautan penyetelan ulang sandi lewat Email.", "Username" => "Nama pengguna", diff --git a/core/l10n/is.php b/core/l10n/is.php index 180e28e974e..f8686b2113f 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Stillingar", "seconds ago" => "sek.", -"1 minute ago" => "Fyrir 1 mínútu", -"{minutes} minutes ago" => "{minutes} min síðan", -"1 hour ago" => "Fyrir 1 klst.", -"{hours} hours ago" => "fyrir {hours} klst.", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "í dag", "yesterday" => "í gær", -"{days} days ago" => "{days} dagar síðan", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "síðasta mánuði", -"{months} months ago" => "fyrir {months} mánuðum", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", @@ -81,7 +79,6 @@ $TRANSLATIONS = array( "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", "The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.", -"ownCloud password reset" => "endursetja ownCloud lykilorð", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", "Username" => "Notendanafn", diff --git a/core/l10n/it.php b/core/l10n/it.php index 3fc006b9a5c..8708386dace 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dicembre", "Settings" => "Impostazioni", "seconds ago" => "secondi fa", -"1 minute ago" => "Un minuto fa", -"{minutes} minutes ago" => "{minutes} minuti fa", -"1 hour ago" => "1 ora fa", -"{hours} hours ago" => "{hours} ore fa", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "oggi", "yesterday" => "ieri", -"{days} days ago" => "{days} giorni fa", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "mese scorso", -"{months} months ago" => "{months} mesi fa", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Messaggio inviato", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", -"ownCloud password reset" => "Ripristino password di ownCloud", "Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}", "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 ." => "Il collegamento per ripristinare la password è stato inviato al tuo indirizzo di posta.
    Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
    Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.", "Request failed!
    Did you make sure your email/username was right?" => "Richiesta non riuscita!
    Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 96185dbb116..c1c2158db62 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "12月", "Settings" => "設定", "seconds ago" => "数秒前", -"1 minute ago" => "1 分前", -"{minutes} minutes ago" => "{minutes} 分前", -"1 hour ago" => "1 時間前", -"{hours} hours ago" => "{hours} 時間前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今日", "yesterday" => "昨日", -"{days} days ago" => "{days} 日前", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "一月前", -"{months} months ago" => "{months} 月前", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "メールを送信しました", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。", "The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。", -"ownCloud password reset" => "ownCloudのパスワードをリセットします", "Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", "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 ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
    しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
    もしそこにもない場合は、管理者に問い合わせてください。", "Request failed!
    Did you make sure your email/username was right?" => "リクエストに失敗しました!
    あなたのメール/ユーザ名が正しいことを確認しましたか?", diff --git a/core/l10n/ka.php b/core/l10n/ka.php index 5a6814afaf0..011fe0af3e4 100644 --- a/core/l10n/ka.php +++ b/core/l10n/ka.php @@ -1,10 +1,12 @@ "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"1 hour ago" => "1 საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "დღეს", "yesterday" => "გუშინ", +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Password" => "პაროლი", "Personal" => "პერსონა", "Users" => "მომხმარებლები", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 9f0cb93fcd1..4666ce33a13 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "დეკემბერი", "Settings" => "პარამეტრები", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"{minutes} minutes ago" => "{minutes} წუთის წინ", -"1 hour ago" => "1 საათის წინ", -"{hours} hours ago" => "{hours} საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "დღეს", "yesterday" => "გუშინ", -"{days} days ago" => "{days} დღის წინ", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "გასულ თვეში", -"{months} months ago" => "{months} თვის წინ", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "იმეილი გაიგზავნა", "The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.", -"ownCloud password reset" => "ownCloud პაროლის შეცვლა", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", "You will receive a link to reset your password via Email." => "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე", "Username" => "მომხმარებლის სახელი", diff --git a/core/l10n/kn.php b/core/l10n/kn.php new file mode 100644 index 00000000000..129c6e0092e --- /dev/null +++ b/core/l10n/kn.php @@ -0,0 +1,8 @@ + array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 814dfadb661..ce7e5c57a0b 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "12월", "Settings" => "설정", "seconds ago" => "초 전", -"1 minute ago" => "1분 전", -"{minutes} minutes ago" => "{minutes}분 전", -"1 hour ago" => "1시간 전", -"{hours} hours ago" => "{hours}시간 전", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "오늘", "yesterday" => "어제", -"{days} days ago" => "{days}일 전", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "지난 달", -"{months} months ago" => "{months}개월 전", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "이메일 발송됨", "The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", -"ownCloud password reset" => "ownCloud 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", "Request failed!
    Did you make sure your email/username was right?" => "요청이 실패했습니다!
    email 주소와 사용자 명을 정확하게 넣으셨나요?", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 02f71d84edf..471ac9ce377 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -1,6 +1,10 @@ "ده‌ستكاری", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", "Username" => "ناوی به‌کارهێنه‌ر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index ccc019d014a..02d1326fb2a 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Astellungen", "seconds ago" => "Sekonnen hir", -"1 minute ago" => "1 Minutt hir", -"{minutes} minutes ago" => "virun {minutes} Minutten", -"1 hour ago" => "virun 1 Stonn", -"{hours} hours ago" => "virun {hours} Stonnen", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "haut", "yesterday" => "gëschter", -"{days} days ago" => "virun {days} Deeg", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "leschte Mount", -"{months} months ago" => "virun {months} Méint", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email geschéckt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.", "The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", -"ownCloud password reset" => "Passwuert-Zrécksetzung vun der ownCloud", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", "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 ." => "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.
    Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.
    Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur.", "Request failed!
    Did you make sure your email/username was right?" => "Ufro feelfeschloen!
    Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index d0c4d4d79a3..6e69b780274 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Gruodis", "Settings" => "Nustatymai", "seconds ago" => "prieš sekundę", -"1 minute ago" => "Prieš 1 minutę", -"{minutes} minutes ago" => "Prieš {count} minutes", -"1 hour ago" => "prieš 1 valandą", -"{hours} hours ago" => "prieš {hours} valandas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "šiandien", "yesterday" => "vakar", -"{days} days ago" => "Prieš {days} dienas", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "praeitą mėnesį", -"{months} months ago" => "prieš {months} mėnesių", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "Laiškas išsiųstas", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", -"ownCloud password reset" => "ownCloud slaptažodžio atkūrimas", "Use the following link to reset your password: {link}" => "Slaptažodio atkūrimui naudokite šią nuorodą: {link}", "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 ." => "Nuorodą su jūsų slaptažodžio atkūrimu buvo nusiųsta jums į paštą.
    Jei jo negausite per atitinkamą laiką, pasižiūrėkite brukalo aplankale.
    Jei jo ir ten nėra, teiraukitės administratoriaus.", "Request failed!
    Did you make sure your email/username was right?" => "Klaida!
    Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 1cac8466d0a..c7696fb067d 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Decembris", "Settings" => "Iestatījumi", "seconds ago" => "sekundes atpakaļ", -"1 minute ago" => "pirms 1 minūtes", -"{minutes} minutes ago" => "pirms {minutes} minūtēm", -"1 hour ago" => "pirms 1 stundas", -"{hours} hours ago" => "pirms {hours} stundām", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "šodien", "yesterday" => "vakar", -"{days} days ago" => "pirms {days} dienām", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "pagājušajā mēnesī", -"{months} months ago" => "pirms {months} mēnešiem", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Vēstule nosūtīta", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai.", "The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.", -"ownCloud password reset" => "ownCloud paroles maiņa", "Use the following link to reset your password: {link}" => "Izmantojiet šo saiti, lai mainītu paroli: {link}", "You will receive a link to reset your password via Email." => "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli.", "Username" => "Lietotājvārds", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 3e43b861d60..087a74fe94f 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Подесувања", "seconds ago" => "пред секунди", -"1 minute ago" => "пред 1 минута", -"{minutes} minutes ago" => "пред {minutes} минути", -"1 hour ago" => "пред 1 час", -"{hours} hours ago" => "пред {hours} часови", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "денеска", "yesterday" => "вчера", -"{days} days ago" => "пред {days} денови", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "минатиот месец", -"{months} months ago" => "пред {months} месеци", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", @@ -79,7 +77,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка при поставување на рок на траење", "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", -"ownCloud password reset" => "ресетирање на лозинка за ownCloud", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", "Username" => "Корисничко име", diff --git a/core/l10n/ml_IN.php b/core/l10n/ml_IN.php new file mode 100644 index 00000000000..883f2beb4ee --- /dev/null +++ b/core/l10n/ml_IN.php @@ -0,0 +1,8 @@ + array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 22860c0a277..239fad9e3c7 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -22,6 +22,10 @@ $TRANSLATIONS = array( "November" => "November", "December" => "Disember", "Settings" => "Tetapan", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Cancel" => "Batal", "Yes" => "Ya", "No" => "Tidak", @@ -29,7 +33,6 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", -"ownCloud password reset" => "Set semula kata lalaun ownCloud", "Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel", "Username" => "Nama pengguna", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 3a7043e760d..21044ad5d42 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -15,11 +15,13 @@ $TRANSLATIONS = array( "November" => "နိုဝင်ဘာ", "December" => "ဒီဇင်ဘာ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"1 minute ago" => "၁ မိနစ်အရင်က", -"1 hour ago" => "၁ နာရီ အရင်က", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ယနေ့", "yesterday" => "မနေ့က", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "ပြီးခဲ့သောလ", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Choose" => "ရွေးချယ်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index fc075fe17a2..643903a244b 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -25,15 +25,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillinger", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minutt siden", -"{minutes} minutes ago" => "{minutes} minutter siden", -"1 hour ago" => "1 time siden", -"{hours} hours ago" => "{hours} timer siden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dager siden", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "forrige måned", -"{months} months ago" => "{months} måneder siden", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", @@ -67,7 +65,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Kan ikke sette utløpsdato", "Sending ..." => "Sender...", "Email sent" => "E-post sendt", -"ownCloud password reset" => "Tilbakestill ownCloud passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", "Username" => "Brukernavn", diff --git a/core/l10n/ne.php b/core/l10n/ne.php new file mode 100644 index 00000000000..883f2beb4ee --- /dev/null +++ b/core/l10n/ne.php @@ -0,0 +1,8 @@ + array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 019e539b281..183899dc4a6 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Instellingen", "seconds ago" => "seconden geleden", -"1 minute ago" => "1 minuut geleden", -"{minutes} minutes ago" => "{minutes} minuten geleden", -"1 hour ago" => "1 uur geleden", -"{hours} hours ago" => "{hours} uren geleden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "vandaag", "yesterday" => "gisteren", -"{days} days ago" => "{days} dagen geleden", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "vorige maand", -"{months} months ago" => "{months} maanden geleden", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail verzonden", "The update was unsuccessful. Please report this issue to the ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.", -"ownCloud password reset" => "ownCloud-wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", "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 ." => "De link voor het resetten van je wachtwoord is verzonden naar je e-mailadres.
    Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan je beheerder om te helpen.", "Request failed!
    Did you make sure your email/username was right?" => "Aanvraag mislukt!
    Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 246429b79f5..47023faae88 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillingar", "seconds ago" => "sekund sidan", -"1 minute ago" => "1 minutt sidan", -"{minutes} minutes ago" => "{minutes} minutt sidan", -"1 hour ago" => "1 time sidan", -"{hours} hours ago" => "{hours} timar sidan", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dagar sidan", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "førre månad", -"{months} months ago" => "{months} månadar sidan", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "E-post sendt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.", "The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", -"ownCloud password reset" => "Nullstilling av ownCloud-passord", "Use the following link to reset your password: {link}" => "Klikk følgjande lenkje til å nullstilla passordet ditt: {link}", "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 ." => "Lenkja til å nullstilla passordet med er sendt til e-posten din.
    Sjå i spam-/søppelmappa di viss du ikkje ser e-posten innan rimeleg tid.
    Spør din lokale administrator viss han ikkje er der heller.", "Request failed!
    Did you make sure your email/username was right?" => "Førespurnaden feila!
    Er du viss på at du skreiv inn rett e-post/brukarnamn?", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 3458fa71558..bb70223361f 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -23,10 +23,13 @@ $TRANSLATIONS = array( "December" => "Decembre", "Settings" => "Configuracion", "seconds ago" => "segonda a", -"1 minute ago" => "1 minuta a", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "uèi", "yesterday" => "ièr", +"_%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", @@ -59,7 +62,6 @@ $TRANSLATIONS = array( "Password protected" => "Parat per senhal", "Error unsetting expiration date" => "Error al metre de la data d'expiracion", "Error setting expiration date" => "Error setting expiration date", -"ownCloud password reset" => "senhal d'ownCloud tornat botar", "Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}", "You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.", "Username" => "Non d'usancièr", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1794519c293..26de64bd0dc 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Grudzień", "Settings" => "Ustawienia", "seconds ago" => "sekund temu", -"1 minute ago" => "1 minutę temu", -"{minutes} minutes ago" => "{minutes} minut temu", -"1 hour ago" => "1 godzinę temu", -"{hours} hours ago" => "{hours} godzin temu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dziś", "yesterday" => "wczoraj", -"{days} days ago" => "{days} dni temu", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "w zeszłym miesiącu", -"{months} months ago" => "{months} miesięcy temu", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail wysłany", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", -"ownCloud password reset" => "restart hasła ownCloud", "Use the following link to reset your password: {link}" => "Użyj tego odnośnika by zresetować hasło: {link}", "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 ." => "Link do zresetowania hasła została wysłana na adres email.
    Jeśli nie otrzymasz go w najbliższym czasie, sprawdź folder ze spamem.
    Jeśli go tam nie ma zwrócić się do administratora tego ownCloud-a.", "Request failed!
    Did you make sure your email/username was right?" => "Żądanie niepowiodło się!
    Czy Twój email/nazwa użytkownika są poprawne?", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 5014bca70e9..c131dd727df 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "dezembro", "Settings" => "Ajustes", "seconds ago" => "segundos atrás", -"1 minute ago" => "1 minuto atrás", -"{minutes} minutes ago" => "{minutes} minutos atrás", -"1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "{hours} horas atrás", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoje", "yesterday" => "ontem", -"{days} days ago" => "{days} dias atrás", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "último mês", -"{months} months ago" => "{months} meses atrás", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A atualização teve êxito. Você será redirecionado ao ownCloud agora.", -"ownCloud password reset" => "Redefinir senha ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte link para redefinir sua senha: {link}", "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 ." => "O link para redefinir sua senha foi enviada para o seu e-mail.
    Se você não recebê-lo dentro de um período razoável de tempo, verifique o spam/lixo.
    Se ele não estiver lá perguntar ao seu administrador local.", "Request failed!
    Did you make sure your email/username was right?" => "O pedido falhou!
    Certifique-se que seu e-mail/username estavam corretos?", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 47073885ed9..9a3d3282a11 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezembro", "Settings" => "Configurações", "seconds ago" => "Minutos atrás", -"1 minute ago" => "Há 1 minuto", -"{minutes} minutes ago" => "{minutes} minutos atrás", -"1 hour ago" => "Há 1 horas", -"{hours} hours ago" => "Há {hours} horas atrás", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoje", "yesterday" => "ontem", -"{days} days ago" => "{days} dias atrás", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "ultímo mês", -"{months} months ago" => "Há {months} meses atrás", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", -"ownCloud password reset" => "Reposição da password ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte endereço para repor a sua password: {link}", "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 ." => "O link para fazer reset à sua password foi enviado para o seu e-mail.
    Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
    Se não o encontrar, por favor contacte o seu administrador.", "Request failed!
    Did you make sure your email/username was right?" => "O pedido falhou!
    Tem a certeza que introduziu o seu email/username correcto?", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 049226cee44..190cbc2d6d8 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembrie", "Settings" => "Setări", "seconds ago" => "secunde în urmă", -"1 minute ago" => "1 minut în urmă", -"{minutes} minutes ago" => "{minutes} minute in urmă", -"1 hour ago" => "Acum o oră", -"{hours} hours ago" => "{hours} ore în urmă", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "astăzi", "yesterday" => "ieri", -"{days} days ago" => "{days} zile in urmă", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "ultima lună", -"{months} months ago" => "{months} luni în urmă", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Mesajul a fost expediat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.", -"ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "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 ." => "Linkul pentru resetarea parolei tale a fost trimis pe email.
    Daca nu ai primit email-ul intr-un timp rezonabil, verifica folderul spam/junk.
    Daca nu sunt acolo intreaba administratorul local.", "Request failed!
    Did you make sure your email/username was right?" => "Cerere esuata!
    Esti sigur ca email-ul/numele de utilizator sunt corecte?", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index a87c2267336..aaa06e5352e 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Декабрь", "Settings" => "Конфигурация", "seconds ago" => "несколько секунд назад", -"1 minute ago" => "1 минуту назад", -"{minutes} minutes ago" => "{minutes} минут назад", -"1 hour ago" => "час назад", -"{hours} hours ago" => "{hours} часов назад", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "сегодня", "yesterday" => "вчера", -"{days} days ago" => "{days} дней назад", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "в прошлом месяце", -"{months} months ago" => "{months} месяцев назад", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Письмо отправлено", "The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", -"ownCloud password reset" => "Сброс пароля ", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "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 ." => "Ссылка для сброса пароля отправлена вам ​​по электронной почте.
    Если вы не получите письмо в пределах одной-двух минут, проверьте папку Спам.
    Если письма там нет, обратитесь к своему администратору.", "Request failed!
    Did you make sure your email/username was right?" => "Запрос не удался. Вы уверены, что email или имя пользователя указаны верно?", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 445d77fa732..03caef7841f 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -22,10 +22,13 @@ $TRANSLATIONS = array( "December" => "දෙසැම්බර්", "Settings" => "සිටුවම්", "seconds ago" => "තත්පරයන්ට පෙර", -"1 minute ago" => "1 මිනිත්තුවකට පෙර", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "අද", "yesterday" => "ඊයේ", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "පෙර මාසයේ", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", @@ -53,7 +56,6 @@ $TRANSLATIONS = array( "Password protected" => "මුර පදයකින් ආරක්ශාකර ඇත", "Error unsetting expiration date" => "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්", "Error setting expiration date" => "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්", -"ownCloud password reset" => "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න", "You will receive a link to reset your password via Email." => "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත", "Username" => "පරිශීලක නම", "Your password was reset" => "ඔබේ මුරපදය ප්‍රත්‍යාරම්භ කරන ලදී", diff --git a/core/l10n/sk.php b/core/l10n/sk.php new file mode 100644 index 00000000000..9c35f7f4664 --- /dev/null +++ b/core/l10n/sk.php @@ -0,0 +1,8 @@ + array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 2f8fd253c34..522e31ba2ea 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Nastavenia", "seconds ago" => "pred sekundami", -"1 minute ago" => "pred minútou", -"{minutes} minutes ago" => "pred {minutes} minútami", -"1 hour ago" => "Pred 1 hodinou", -"{hours} hours ago" => "Pred {hours} hodinami.", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dnes", "yesterday" => "včera", -"{days} days ago" => "pred {days} dňami", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "minulý mesiac", -"{months} months ago" => "Pred {months} mesiacmi.", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email odoslaný", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", -"ownCloud password reset" => "Obnovenie hesla pre ownCloud", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", "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 ." => "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
    Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
    Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", "Request failed!
    Did you make sure your email/username was right?" => "Požiadavka zlyhala.
    Uistili ste sa, že Vaše používateľské meno a email sú správne?", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index fc2b4181a75..0c0e828f0b4 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Nastavitve", "seconds ago" => "pred nekaj sekundami", -"1 minute ago" => "pred minuto", -"{minutes} minutes ago" => "pred {minutes} minutami", -"1 hour ago" => "Pred 1 uro", -"{hours} hours ago" => "pred {hours} urami", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "danes", "yesterday" => "včeraj", -"{days} days ago" => "pred {days} dnevi", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "zadnji mesec", -"{months} months ago" => "pred {months} meseci", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Elektronska pošta je poslana", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", -"ownCloud password reset" => "Ponastavitev gesla za oblak ownCloud", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", "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 ." => "Povezava za ponastavitev gesla je bila poslana na elektronski naslov.
    V kolikor sporočila ne prejmete v doglednem času, preverite tudi mape vsiljene pošte.
    Če ne bo niti tam, stopite v stik s skrbnikom.", "Request failed!
    Did you make sure your email/username was right?" => "Zahteva je spodletela!
    Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index ad3ad482e6b..2b073bc88b8 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Dhjetor", "Settings" => "Parametra", "seconds ago" => "sekonda më parë", -"1 minute ago" => "1 minutë më parë", -"{minutes} minutes ago" => "{minutes} minuta më parë", -"1 hour ago" => "1 orë më parë", -"{hours} hours ago" => "{hours} orë më parë", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "sot", "yesterday" => "dje", -"{days} days ago" => "{days} ditë më parë", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "muajin e shkuar", -"{months} months ago" => "{months} muaj më parë", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", @@ -85,7 +83,6 @@ $TRANSLATIONS = array( "Email sent" => "Email-i u dërgua", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.", -"ownCloud password reset" => "Rivendosja e kodit të ownCloud-it", "Use the following link to reset your password: {link}" => "Përdorni lidhjen në vijim për të rivendosur kodin: {link}", "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 ." => "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.
    Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).
    Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal.", "Request failed!
    Did you make sure your email/username was right?" => "Kërkesa dështoi!
    A u siguruat që email-i/përdoruesi juaj ishte i saktë?", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 0ea05f41a72..77c8b9225da 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Децембар", "Settings" => "Поставке", "seconds ago" => "пре неколико секунди", -"1 minute ago" => "пре 1 минут", -"{minutes} minutes ago" => "пре {minutes} минута", -"1 hour ago" => "Пре једног сата", -"{hours} hours ago" => "Пре {hours} сата (сати)", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "данас", "yesterday" => "јуче", -"{days} days ago" => "пре {days} дана", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "прошлог месеца", -"{months} months ago" => "Пре {months} месеца (месеци)", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", @@ -78,7 +76,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка код постављања датума истека", "Sending ..." => "Шаљем...", "Email sent" => "Порука је послата", -"ownCloud password reset" => "Поништавање лозинке за ownCloud", "Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", "You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", "Username" => "Корисничко име", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index b8bae55f227..f1bbd2ea7ed 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -20,6 +20,10 @@ $TRANSLATIONS = array( "November" => "Novembar", "December" => "Decembar", "Settings" => "Podešavanja", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Cancel" => "Otkaži", "Password" => "Lozinka", "You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7157a0bbd6..03d8dbbb3f4 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Inställningar", "seconds ago" => "sekunder sedan", -"1 minute ago" => "1 minut sedan", -"{minutes} minutes ago" => "{minutes} minuter sedan", -"1 hour ago" => "1 timme sedan", -"{hours} hours ago" => "{hours} timmar sedan", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dagar sedan", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "förra månaden", -"{months} months ago" => "{months} månader sedan", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-post skickat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", -"ownCloud password reset" => "ownCloud lösenordsåterställning", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", "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 ." => "Länken för att återställa ditt lösenorden har skickats till din e-postadress
    Om du inte har erhållit meddelandet inom kort, vänligen kontrollera din skräppost-mapp
    Om den inte finns där, vänligen kontakta din administratör.", "Request failed!
    Did you make sure your email/username was right?" => "Begäran misslyckades!
    Är du helt säker på att din e-postadress/användarnamn är korrekt?", diff --git a/core/l10n/sw_KE.php b/core/l10n/sw_KE.php new file mode 100644 index 00000000000..883f2beb4ee --- /dev/null +++ b/core/l10n/sw_KE.php @@ -0,0 +1,8 @@ + array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index a7b71176f3b..d715dde88c9 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "மார்கழி", "Settings" => "அமைப்புகள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"1 minute ago" => "1 நிமிடத்திற்கு முன் ", -"{minutes} minutes ago" => "{நிமிடங்கள்} நிமிடங்களுக்கு முன் ", -"1 hour ago" => "1 மணித்தியாலத்திற்கு முன்", -"{hours} hours ago" => "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "இன்று", "yesterday" => "நேற்று", -"{days} days ago" => "{நாட்கள்} நாட்களுக்கு முன்", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "கடந்த மாதம்", -"{months} months ago" => "{மாதங்கள்} மாதங்களிற்கு முன்", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", @@ -75,7 +73,6 @@ $TRANSLATIONS = array( "Password protected" => "கடவுச்சொல் பாதுகாக்கப்பட்டது", "Error unsetting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு", "Error setting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு", -"ownCloud password reset" => "ownCloud இன் கடவுச்சொல் மீளமைப்பு", "Use the following link to reset your password: {link}" => "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}", "You will receive a link to reset your password via Email." => "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். ", "Username" => "பயனாளர் பெயர்", diff --git a/core/l10n/te.php b/core/l10n/te.php index a0fe28c5553..16a65eea776 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -22,15 +22,13 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "seconds ago" => "క్షణాల క్రితం", -"1 minute ago" => "1 నిమిషం క్రితం", -"{minutes} minutes ago" => "{minutes} నిమిషాల క్రితం", -"1 hour ago" => "1 గంట క్రితం", -"{hours} hours ago" => "{hours} గంటల క్రితం", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"{days} days ago" => "{days} రోజుల క్రితం", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "పోయిన నెల", -"{months} months ago" => "{months} నెలల క్రితం", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 379c479ffd6..7dda8cf6d30 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "ธันวาคม", "Settings" => "ตั้งค่า", "seconds ago" => "วินาที ก่อนหน้านี้", -"1 minute ago" => "1 นาทีก่อนหน้านี้", -"{minutes} minutes ago" => "{minutes} นาทีก่อนหน้านี้", -"1 hour ago" => "1 ชั่วโมงก่อนหน้านี้", -"{hours} hours ago" => "{hours} ชั่วโมงก่อนหน้านี้", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"{days} days ago" => "{day} วันก่อนหน้านี้", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "เดือนที่แล้ว", -"{months} months ago" => "{months} เดือนก่อนหน้านี้", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", @@ -82,7 +80,6 @@ $TRANSLATIONS = array( "Email sent" => "ส่งอีเมล์แล้ว", "The update was unsuccessful. Please report this issue to the ownCloud community." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud", "The update was successful. Redirecting you to ownCloud now." => "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้", -"ownCloud password reset" => "รีเซ็ตรหัสผ่าน ownCloud", "Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", "You will receive a link to reset your password via Email." => "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์", "Username" => "ชื่อผู้ใช้งาน", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index eb9a0a60f03..72923245e96 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Aralık", "Settings" => "Ayarlar", "seconds ago" => "saniye önce", -"1 minute ago" => "1 dakika önce", -"{minutes} minutes ago" => "{minutes} dakika önce", -"1 hour ago" => "1 saat önce", -"{hours} hours ago" => "{hours} saat önce", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "bugün", "yesterday" => "dün", -"{days} days ago" => "{days} gün önce", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "geçen ay", -"{months} months ago" => "{months} ay önce", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Eposta gönderildi", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", -"ownCloud password reset" => "ownCloud parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", "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 ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
    I Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
    Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
    Did you make sure your email/username was right?" => "Isteği başarısız oldu!
    E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?", diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 12d752b8288..3c033ca6d6f 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -20,10 +20,12 @@ $TRANSLATIONS = array( "November" => "ئوغلاق", "December" => "كۆنەك", "Settings" => "تەڭشەكلەر", -"1 minute ago" => "1 مىنۇت ئىلگىرى", -"1 hour ago" => "1 سائەت ئىلگىرى", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Cancel" => "ۋاز كەچ", "Yes" => "ھەئە", "No" => "ياق", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 54fb11d7bf3..8d921957367 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Грудень", "Settings" => "Налаштування", "seconds ago" => "секунди тому", -"1 minute ago" => "1 хвилину тому", -"{minutes} minutes ago" => "{minutes} хвилин тому", -"1 hour ago" => "1 годину тому", -"{hours} hours ago" => "{hours} години тому", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "сьогодні", "yesterday" => "вчора", -"{days} days ago" => "{days} днів тому", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "минулого місяця", -"{months} months ago" => "{months} місяців тому", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Ел. пошта надіслана", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.", -"ownCloud password reset" => "скидання пароля ownCloud", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.", "Username" => "Ім'я користувача", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index 7474180ac6d..ba81e53cfee 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -15,6 +15,10 @@ $TRANSLATIONS = array( "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,), "Choose" => "منتخب کریں", "Cancel" => "منسوخ کریں", "Yes" => "ہاں", @@ -40,7 +44,6 @@ $TRANSLATIONS = array( "delete" => "ختم کریں", "share" => "شئیر کریں", "Password protected" => "پاسورڈ سے محفوظ کیا گیا ہے", -"ownCloud password reset" => "اون کلاؤڈ پاسورڈ ری سیٹ", "Use the following link to reset your password: {link}" => "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}", "You will receive a link to reset your password via Email." => "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے", "Username" => "یوزر نیم", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 5ba902c3554..26ba0dbf8ed 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Tháng 12", "Settings" => "Cài đặt", "seconds ago" => "vài giây trước", -"1 minute ago" => "1 phút trước", -"{minutes} minutes ago" => "{minutes} phút trước", -"1 hour ago" => "1 giờ trước", -"{hours} hours ago" => "{hours} giờ trước", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hôm nay", "yesterday" => "hôm qua", -"{days} days ago" => "{days} ngày trước", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "tháng trước", -"{months} months ago" => "{months} tháng trước", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Email đã được gửi", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", -"ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", "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 ." => "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
    Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
    Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống.", "Request failed!
    Did you make sure your email/username was right?" => "Yêu cầu thất bại!
    Bạn có chắc là email/tên đăng nhập của bạn chính xác?", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 6b389179b7e..6f7d0dd434b 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"1 minute ago" => "1 分钟前", -"{minutes} minutes ago" => "{minutes} 分钟前", -"1 hour ago" => "1小时前", -"{hours} hours ago" => "{hours}小时前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "上个月", -"{months} months ago" => "{months}月前", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "电子邮件已发送", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升级失败。请向ownCloud社区报告此问题。", "The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", -"ownCloud password reset" => "私有云密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", "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 ." => "重置密码的连接已经通过邮件到您的邮箱。
    如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
    如果还是没有收到,请联系您的系统管理员。", "Request failed!
    Did you make sure your email/username was right?" => "请求失败!
    你确定你的邮件地址/用户名是正确的?", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 3479baefdd0..be35c4fdbbe 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"1 minute ago" => "一分钟前", -"{minutes} minutes ago" => "{minutes} 分钟前", -"1 hour ago" => "1小时前", -"{hours} hours ago" => "{hours} 小时前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "上月", -"{months} months ago" => "{months} 月前", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "邮件已发送", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", -"ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "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 ." => "重置密码的链接已发送到您的邮箱。
    如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
    如果没有在那里,请询问您的本地管理员。", "Request failed!
    Did you make sure your email/username was right?" => "请求失败
    您确定您的邮箱/用户名是正确的?", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index c29d91bc53b..6df564739fb 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -20,9 +20,13 @@ $TRANSLATIONS = array( "November" => "十一月", "December" => "十二月", "Settings" => "設定", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今日", "yesterday" => "昨日", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "前一月", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "個月之前", "Cancel" => "取消", "Yes" => "Yes", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index a5b4e5a6c3e..60caebcd336 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "設定", "seconds ago" => "幾秒前", -"1 minute ago" => "1 分鐘前", -"{minutes} minutes ago" => "{minutes} 分鐘前", -"1 hour ago" => "1 小時之前", -"{hours} hours ago" => "{hours} 小時前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array(,), "last month" => "上個月", -"{months} months ago" => "{months} 個月前", +"_%n month ago_::_%n months ago_" => array(,), "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email 已寄出", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", -"ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "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 ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", "Request failed!
    Did you make sure your email/username was right?" => "請求失敗!
    您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index d38d730a082..2aa42f705fb 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Instellings" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index adfb6e8f93d..2eb2aa7bcee 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +202,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +283,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 67021b0b63a..020abe02dd9 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6e3cacf3df9..491052f17f0 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index b13030b52b8..8a6009ccb39 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,75 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "إعدادات" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "منذ دقيقة" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} منذ دقائق" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "قبل ساعة مضت" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ساعة مضت" - -#: js/js.js:819 msgid "today" msgstr "اليوم" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} يوم سابق" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} شهر مضت" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "سنة مضت" @@ -377,9 +393,10 @@ msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقر msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "إعادة تعيين كلمة سر ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index c3f06d75b7a..2f9759aeb71 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "قيد الانتظار" @@ -160,11 +160,17 @@ msgstr "تراجع" msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "جاري رفع 1 ملف" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +218,25 @@ msgstr "حجم" msgid "Modified" msgstr "معدل" -#: js/files.js:763 -msgid "1 folder" -msgstr "مجلد عدد 1" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} مجلدات" - -#: js/files.js:773 -msgid "1 file" -msgstr "ملف واحد" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ملفات" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c520cd38226..f07045eb588 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,25 @@ msgstr "اسم" msgid "Deleted" msgstr "تم الحذف" -#: js/trash.js:192 -msgid "1 folder" -msgstr "مجلد عدد 1" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} مجلدات" - -#: js/trash.js:202 -msgid "1 file" -msgstr "ملف واحد" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ملفات" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 6fe38212e1b..040d66a42c4 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,62 @@ msgid "seconds ago" msgstr "منذ ثواني" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "منذ دقيقة" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d دقيقة مضت" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "قبل ساعة مضت" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ساعة مضت" - -#: template/functions.php:85 msgid "today" msgstr "اليوم" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "يوم أمس" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d يوم مضى" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "الشهر الماضي" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d شهر مضت" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "السنةالماضية" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/be/core.po b/l10n/be/core.po index 2e14badcc29..fb9c15d2ccc 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,67 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +385,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/be/files.po b/l10n/be/files.po index 3589633cd92..66c2d81dabc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,15 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +204,33 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format @@ -285,45 +289,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index ae698ecde9e..770cceb542c 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,21 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index d6a34784f4c..c95cd9291f6 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,54 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 7bd4f710b0e..cf34714ed71 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Настройки" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "преди 1 минута" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "преди 1 час" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "днес" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "последният месец" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "последната година" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "последните години" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 6177f5fbdaf..3dc6cd15d87 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Чакащо" @@ -160,11 +160,13 @@ msgstr "възтановяване" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "Размер" msgid "Modified" msgstr "Променено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файла" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index d232b3b0294..1b16c5b4097 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Име" msgid "Deleted" msgstr "Изтрито" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файла" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 4262850f24b..1aa83779f3d 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "преди секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "преди 1 минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "преди %d минути" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "преди 1 час" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "преди %d часа" - -#: template/functions.php:85 msgid "today" msgstr "днес" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "преди %d дни" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "последният месец" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "преди %d месеца" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "последната година" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "последните години" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 35ee439b4d2..ab302185623 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "১ মিনিট পূর্বে" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} মিনিট পূর্বে" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ঘন্টা পূর্বে" - -#: js/js.js:819 msgid "today" msgstr "আজ" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} দিন পূর্বে" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "গত মাস" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} মাস পূর্বে" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "গত বছর" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "বছর পূর্বে" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 863cde1d989..09289f17be2 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "মুলতুবি" @@ -160,11 +160,13 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "১টি ফাইল আপলোড করা হচ্ছে" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "আকার" msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:763 -msgid "1 folder" -msgstr "১টি ফোল্ডার" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" - -#: js/files.js:773 -msgid "1 file" -msgstr "১টি ফাইল" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} টি ফাইল" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index f52d33c0a58..eba36ccfd6b 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "রাম" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "১টি ফোল্ডার" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" - -#: js/trash.js:202 -msgid "1 file" -msgstr "১টি ফাইল" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} টি ফাইল" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 94dd00b4762..9f5df0a9649 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "১ মিনিট পূর্বে" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d মিনিট পূর্বে" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "আজ" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "গতকাল" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d দিন পূর্বে" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "গত মাস" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "গত বছর" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 7ff5f0d5e12..d544fc01ed1 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 40526578de4..f628bc21898 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,14 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +215,19 @@ msgstr "Veličina" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 9fb0dde49f9..319adc5d239 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index c2f770fea8e..aaa796e1039 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 8e4a149618b..a9864b9876a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuració" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "fa 1 minut" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "fa {minutes} minuts" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "fa 1 hora" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "fa {hours} hores" - -#: js/js.js:819 msgid "today" msgstr "avui" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ahir" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "fa {days} dies" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "el mes passat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "fa {months} mesos" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "l'any passat" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anys enrere" @@ -379,9 +379,10 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendent" @@ -162,11 +162,13 @@ msgstr "desfés" msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fitxer pujant" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fitxers pujant" @@ -214,21 +216,17 @@ msgstr "Mida" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fitxer" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fitxers" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index f20e566e4f2..69f190dc6ae 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Nom" msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fitxer" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fitxers" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 5ab8cad9372..28c2be4f31c 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "segons enrere" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "fa 1 minut" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "fa %d minuts" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "fa 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "fa %d hores" - -#: template/functions.php:85 msgid "today" msgstr "avui" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ahir" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "fa %d dies" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "el mes passat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "fa %d mesos" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "l'any passat" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index ef830001704..2ee7bf18d26 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 # Martin , 2013 # pstast , 2013 @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -141,59 +142,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavení" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "před minutou" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "před {minutes} minutami" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "před hodinou" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "před {hours} hodinami" - -#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "včera" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "před {days} dny" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "před {months} měsíci" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "před měsíci" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "minulý rok" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "před lety" @@ -381,9 +386,10 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -131,7 +131,7 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Nevyřízené" @@ -163,11 +163,14 @@ msgstr "vrátit zpět" msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "odesílá se 1 soubor" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "soubory se odesílají" @@ -215,21 +218,19 @@ msgstr "Velikost" msgid "Modified" msgstr "Upraveno" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 složka" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} složek" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 soubor" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} souborů" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index b477743c562..1ae1e6e02fa 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 # Martin , 2013 # pstast , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-14 17:00+0000\n" +"Last-Translator: janinko \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" @@ -74,7 +75,7 @@ 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 "" +msgstr "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější, a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4f63d6c7dba..52c74099704 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,19 @@ msgstr "Název" msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 složka" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} složky" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 soubor" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} soubory" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 18d9a5a279e..5cde1831012 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -209,50 +209,50 @@ msgid "seconds ago" msgstr "před pár sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "před minutou" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "před %d minutami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "před hodinou" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "před %d hodinami" - -#: template/functions.php:85 msgid "today" msgstr "dnes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včera" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "před %d dny" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "minulý měsíc" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "před %d měsíci" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "minulý rok" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "před lety" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index e17b731ac31..eda31fda907 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,67 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 munud yn ôl" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} munud yn ôl" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 awr yn ôl" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} awr yn ôl" - -#: js/js.js:819 msgid "today" msgstr "heddiw" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ddoe" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} diwrnod yn ôl" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} mis yn ôl" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "y llynedd" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -378,9 +386,10 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "I ddod" @@ -160,11 +160,15 @@ msgstr "dadwneud" msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ffeil yn llwytho i fyny" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -212,21 +216,21 @@ msgstr "Maint" msgid "Modified" msgstr "Addaswyd" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 blygell" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} plygell" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ffeil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ffeil" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 2df508d685e..b9b366cf636 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,21 @@ msgstr "Enw" msgid "Deleted" msgstr "Wedi dileu" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 blygell" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} plygell" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ffeil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ffeil" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index c4ce11ab837..f53ef9f6f27 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,54 @@ msgid "seconds ago" msgstr "eiliad yn ôl" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 munud yn ôl" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d munud yn ôl" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 awr yn ôl" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d awr yn ôl" - -#: template/functions.php:85 msgid "today" msgstr "heddiw" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ddoe" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d diwrnod yn ôl" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mis diwethaf" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d mis yn ôl" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "y llynedd" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/da/core.po b/l10n/da/core.po index 4f043cabb6e..2966aa98494 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -4,14 +4,15 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 # Ole Holm Frandsen , 2013 # Peter Jespersen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -140,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut siden" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timer siden" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dage siden" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "sidste måned" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} måneder siden" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "måneder siden" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "sidste år" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år siden" @@ -380,9 +381,10 @@ msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Nulstil ownCloud kodeord" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -414,7 +416,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode. HVis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter. Vil du fortsætte?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -477,7 +479,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -524,7 +526,7 @@ msgstr "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "For information om, hvordan du konfigurerer din server korrekt se dokumentationen." #: templates/installation.php:47 msgid "Create an admin account" @@ -583,7 +585,7 @@ msgstr "Log ud" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Flere programmer" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -620,7 +622,7 @@ msgstr "Alternative logins" msgid "" "Hey there,

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

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

    dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
    Se det!

    Hej" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/da/files.po b/l10n/da/files.po index 19bbe806b54..8a78acb722a 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -130,7 +130,7 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Afventer" @@ -162,11 +162,13 @@ msgstr "fortryd" msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil uploades" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "uploader filer" @@ -214,21 +216,17 @@ msgstr "Størrelse" msgid "Modified" msgstr "Ændret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index ad4b78df1c2..105ba059f9e 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-14 19:40+0000\n" +"Last-Translator: claus_chr \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,11 +72,11 @@ 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 "" +msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Følgende brugere er ikke sat op til kryptering:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 9e5c80b3041..a629083f8ba 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Navn" msgid "Deleted" msgstr "Slettet" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 428fab08b39..1d132880f9d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "sekunder siden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutter siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time siden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timer siden" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dage siden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "sidste måned" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d måneder siden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "sidste år" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år siden" diff --git a/l10n/de/core.po b/l10n/de/core.po index b3c2ddb1bef..47ffc3c1458 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,6 +4,7 @@ # # Translators: # arkascha , 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # JamFX , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-11 15:10+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "vor einer Minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Vor Jahren" @@ -384,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -132,7 +132,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ausstehend" @@ -164,11 +164,13 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -216,21 +218,17 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index dd3f5d772bb..65d345b8f64 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Name" msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 2c23153b7ad..c6fc4ba5f1a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -209,50 +209,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "vor einer Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index d28efc5d0cb..621763a9b8e 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -580,7 +582,7 @@ msgstr "" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Mehr Apps" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 8b21b5f1692..c6a4736092c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 12c2585e9cb..a05dc1411b2 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 4d42aa22717..0984165a840 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index d32af375341..78e1a2ea083 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -5,6 +5,7 @@ # Translators: # arkascha , 2013 # FlorianScholz , 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Vor 1 Minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Vor Jahren" @@ -384,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,7 +136,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ausstehend" @@ -168,11 +168,13 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -220,21 +222,17 @@ msgstr "Grösse" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 11659a6602a..1d80e2f4371 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,21 +53,17 @@ msgstr "Name" msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index a3ba8221ed8..b694523ffe8 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -209,50 +209,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Vor 1 Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 081129c614e..80603ff03ae 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -5,6 +5,7 @@ # Translators: # arkascha , 2013 # SteinQuadrat, 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # traductor , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-11 15:10+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -143,59 +144,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Vor 1 Minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Vor Jahren" @@ -383,9 +384,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die , 2013 # Marcel Kühlhorn , 2013 # traductor , 2013 +# noxin , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:50+0000\n" +"Last-Translator: noxin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,7 +136,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ausstehend" @@ -167,11 +168,13 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Es werden %n Dateien hochgeladen" +msgstr[1] "Es werden %n Dateien hochgeladen" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -219,21 +222,17 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ea20766b17b..d42fec3eb75 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Name" msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ff53275a286..3a5acf70279 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Vor 1 Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/el/core.po b/l10n/el/core.po index 513c719b8b8..9ce695662a3 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -144,59 +144,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 λεπτό πριν" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} λεπτά πριν" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ώρα πριν" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ώρες πριν" - -#: js/js.js:819 msgid "today" msgstr "σήμερα" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "χτες" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ημέρες πριν" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} μήνες πριν" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "χρόνια πριν" @@ -384,9 +384,10 @@ msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ σ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Επαναφορά συνθηματικού ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/el/files.po b/l10n/el/files.po index a4f5443a37c..483abeaba5d 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -130,7 +130,7 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Εκκρεμεί" @@ -162,11 +162,13 @@ msgstr "αναίρεση" msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 αρχείο ανεβαίνει" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -214,21 +216,17 @@ msgstr "Μέγεθος" msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 φάκελος" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} φάκελοι" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 αρχείο" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} αρχεία" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 6c2cab32d42..9419e249a1f 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Όνομα" msgid "Deleted" msgstr "Διαγράφηκε" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 φάκελος" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} φάκελοι" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 αρχείο" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} αρχεία" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 2bc4d5854c9..c98f621f36e 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "δευτερόλεπτα πριν" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 λεπτό πριν" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d λεπτά πριν" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ώρα πριν" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ώρες πριν" - -#: template/functions.php:85 msgid "today" msgstr "σήμερα" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "χτες" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ημέρες πριν" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "τελευταίο μήνα" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d μήνες πριν" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "τελευταίο χρόνο" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 9d2bf6cd16f..f644607fac9 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -378,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index e3737d260a1..49638f0cca2 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index 03673aa9390..c64e4f7a6a2 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 57f3f1a3de0..69cf917ce77 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 6a0ad8b24ab..59d39a60fd0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Agordo" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "antaŭ 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "antaŭ {minutes} minutoj" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "antaŭ 1 horo" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "antaŭ {hours} horoj" - -#: js/js.js:819 msgid "today" msgstr "hodiaŭ" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "antaŭ {days} tagoj" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "lastamonate" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "antaŭ {months} monatoj" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "lastajare" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "jaroj antaŭe" @@ -379,9 +379,10 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Traktotaj" @@ -161,11 +161,13 @@ msgstr "malfari" msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 dosiero estas alŝutata" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -213,21 +215,17 @@ msgstr "Grando" msgid "Modified" msgstr "Modifita" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosierujo" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosierujoj" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosiero" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} dosierujoj" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c306eefbc51..def217fe084 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nomo" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dosierujo" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dosierujoj" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 dosiero" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} dosierujoj" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 313fcc5b1ed..8c48d709483 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "sekundoj antaŭe" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "antaŭ 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "antaŭ %d minutoj" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "antaŭ 1 horo" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "antaŭ %d horoj" - -#: template/functions.php:85 msgid "today" msgstr "hodiaŭ" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hieraŭ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "antaŭ %d tagoj" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "lastamonate" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "antaŭ %d monatoj" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "lastajare" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3cd276adf72..89a2465d445 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -145,59 +145,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "hace 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Hace 1 hora" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Hace {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ayer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hace {days} días" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "el mes pasado" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Hace {months} meses" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "hace meses" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "el año pasado" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "hace años" @@ -385,9 +385,10 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reseteo contraseña de ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8a38275c614..6dd3bd3f4ad 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -133,7 +133,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendiente" @@ -165,11 +165,13 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "subiendo 1 archivo" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "subiendo archivos" @@ -217,21 +219,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} archivos" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index ccaa90e09d2..beb34a8115e 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -53,21 +53,17 @@ msgstr "Nombre" msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} archivos" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 8ff17ba6da0..209038f14eb 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "hace segundos" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hace 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hace %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Hace 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Hace %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoy" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ayer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hace %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mes pasado" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Hace %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "año pasado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "hace años" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 886ceb9876e..a64c557f8e7 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuración" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "hace 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 hora atrás" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "hace {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ayer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hace {days} días" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "el mes pasado" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} meses atrás" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "el año pasado" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "años atrás" @@ -378,9 +378,10 @@ msgstr "La actualización no pudo ser completada. Por favor, reportá el inconve msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Restablecer contraseña de ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 3b8bee30bcf..942c654beb6 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -130,7 +130,7 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendientes" @@ -162,11 +162,13 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Llevar a cabo borrado" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Subiendo 1 archivo" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "Subiendo archivos" @@ -214,21 +216,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 directorio" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} directorios" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} archivos" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 2a816ac13b9..bdec790f40d 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nombre" msgid "Deleted" msgstr "Borrado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 directorio" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} directorios" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} archivos" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 47c28e8b23b..722cf0c4c60 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hace 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hace %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "hace 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "hace %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoy" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ayer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hace %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "el mes pasado" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "hace %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "el año pasado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "años atrás" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 388afd742f4..089c7847e96 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 11:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Seaded" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut tagasi" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutit tagasi" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 tund tagasi" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} tundi tagasi" - -#: js/js.js:819 msgid "today" msgstr "täna" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "eile" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} päeva tagasi" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} kuud tagasi" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "aastat tagasi" @@ -379,9 +379,10 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ootel" @@ -162,11 +162,13 @@ msgstr "tagasi" msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fail üleslaadimisel" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -214,21 +216,17 @@ msgstr "Suurus" msgid "Modified" msgstr "Muudetud" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kaust" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fail" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} faili" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 7fc9276bc8e..9e88ec56abd 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 11:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Nimi" msgid "Deleted" msgstr "Kustutatud" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 kaust" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fail" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} faili" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 6324649b8a6..a0fadcd8fea 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "sekundit tagasi" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut tagasi" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutit tagasi" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 tund tagasi" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d tundi tagasi" - -#: template/functions.php:85 msgid "today" msgstr "täna" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "eile" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d päeva tagasi" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "viimasel kuul" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d kuud tagasi" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "viimasel aastal" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 3b85fc58760..b732596c727 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "orain dela minutu 1" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "orain dela {minutes} minutu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "orain dela ordu bat" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "orain dela {hours} ordu" - -#: js/js.js:819 msgid "today" msgstr "gaur" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "atzo" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "orain dela {days} egun" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "orain dela {months} hilabete" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "hilabete" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "joan den urtean" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "urte" @@ -379,9 +379,10 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Zain" @@ -161,11 +161,13 @@ msgstr "desegin" msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "fitxategi 1 igotzen" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -213,21 +215,17 @@ msgstr "Tamaina" msgid "Modified" msgstr "Aldatuta" -#: js/files.js:763 -msgid "1 folder" -msgstr "karpeta bat" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} karpeta" - -#: js/files.js:773 -msgid "1 file" -msgstr "fitxategi bat" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fitxategi" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 0c4934d2707..ee2efd48c1b 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Izena" msgid "Deleted" msgstr "Ezabatuta" -#: js/trash.js:192 -msgid "1 folder" -msgstr "karpeta bat" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} karpeta" - -#: js/trash.js:202 -msgid "1 file" -msgstr "fitxategi bat" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fitxategi" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 03ab66ae767..99b8dd00c28 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "segundu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "orain dela minutu 1" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "orain dela %d minutu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "orain dela ordu bat" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "orain dela %d ordu" - -#: template/functions.php:85 msgid "today" msgstr "gaur" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "atzo" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "orain dela %d egun" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "joan den hilabetean" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "orain dela %d hilabete" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "joan den urtean" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "urte" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 7b7f10c2561..13245335540 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 دقیقه پیش" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{دقیقه ها} دقیقه های پیش" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ساعت پیش" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{ساعت ها} ساعت ها پیش" - -#: js/js.js:819 msgid "today" msgstr "امروز" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "دیروز" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{روزها} روزهای پیش" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ماه قبل" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{ماه ها} ماه ها پیش" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "سال قبل" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "سال‌های قبل" @@ -378,9 +374,10 @@ msgstr "به روز رسانی ناموفق بود. لطفا این خطا را msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "پسورد ابرهای شما تغییرکرد" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index bbe0225b17c..8a93ed80018 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -129,7 +129,7 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "در انتظار" @@ -161,11 +161,12 @@ msgstr "بازگشت" msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 پرونده آپلود شد." +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -213,21 +214,15 @@ msgstr "اندازه" msgid "Modified" msgstr "تاریخ" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 پوشه" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 پرونده" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{ شمار } فایل ها" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 2f671b8c3ee..b7425ae04ba 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "نام" msgid "Deleted" msgstr "حذف شده" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 پوشه" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 پرونده" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{ شمار } فایل ها" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 2306994e9a2..86524be032e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,42 @@ msgid "seconds ago" msgstr "ثانیه‌ها پیش" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 دقیقه پیش" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d دقیقه پیش" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ساعت پیش" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ساعت پیش" - -#: template/functions.php:85 msgid "today" msgstr "امروز" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "دیروز" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d روز پیش" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ماه قبل" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%dماه پیش" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "سال قبل" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index bd4edb94e26..c568ee69521 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-11 17:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Asetukset" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuutti sitten" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuuttia sitten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 tunti sitten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} tuntia sitten" - -#: js/js.js:819 msgid "today" msgstr "tänään" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "eilen" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} päivää sitten" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "viime kuussa" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} kuukautta sitten" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "viime vuonna" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "vuotta sitten" @@ -378,9 +378,10 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Odottaa" @@ -161,11 +161,13 @@ msgstr "kumoa" msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -213,21 +215,17 @@ msgstr "Koko" msgid "Modified" msgstr "Muokattu" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kansio" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kansiota" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 tiedosto" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} tiedostoa" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 654d307c870..d49cd73b908 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Nimi" msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 kansio" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} kansiota" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 tiedosto" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} tiedostoa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index b5976ee80e9..04bbdf3a797 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "sekuntia sitten" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuutti sitten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuuttia sitten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 tunti sitten" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d tuntia sitten" - -#: template/functions.php:85 msgid "today" msgstr "tänään" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "eilen" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d päivää sitten" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "viime kuussa" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d kuukautta sitten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "viime vuonna" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 7220f53b56f..8246c9644de 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -142,59 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Paramètres" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "il y a une minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "il y a {minutes} minutes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Il y a une heure" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Il y a {hours} heures" - -#: js/js.js:819 msgid "today" msgstr "aujourd'hui" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hier" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "il y a {days} jours" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "le mois dernier" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Il y a {months} mois" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "l'année dernière" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "il y a plusieurs années" @@ -382,9 +382,10 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "En attente" @@ -163,11 +163,13 @@ msgstr "annuler" msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fichier en cours d'envoi" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -215,21 +217,17 @@ msgstr "Taille" msgid "Modified" msgstr "Modifié" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dossier" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dossiers" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fichier" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fichiers" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index d5d08005c63..464c518b8a5 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nom" msgid "Deleted" msgstr "Effacé" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dossier" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dossiers" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fichier" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fichiers" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index d9624537671..0658f16d435 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "il y a quelques secondes" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "il y a une minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "il y a %d minutes" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Il y a une heure" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Il y a %d heures" - -#: template/functions.php:85 msgid "today" msgstr "aujourd'hui" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hier" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "il y a %d jours" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "le mois dernier" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Il y a %d mois" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "l'année dernière" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4c35dd27339..c7eccad163f 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 06:50+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Axustes" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "hai 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hai {minutes} minutos" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Vai 1 hora" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "hai {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoxe" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "onte" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hai {days} días" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "último mes" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "hai {months} meses" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "último ano" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anos atrás" @@ -378,9 +378,10 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendentes" @@ -161,11 +161,13 @@ msgstr "desfacer" msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Enviándose 1 ficheiro" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "ficheiros enviándose" @@ -213,21 +215,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartafol" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index d1f2e6dd953..2a1193ea633 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 cartafol" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 720088a3904..0ed2450f993 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hai 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hai %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vai 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vai %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoxe" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "onte" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hai %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "último mes" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vai %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "último ano" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/he/core.po b/l10n/he/core.po index 94421da95d9..44845c5b9e7 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "הגדרות" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "שניות" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "לפני דקה אחת" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "לפני {minutes} דקות" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "לפני שעה" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "לפני {hours} שעות" - -#: js/js.js:819 msgid "today" msgstr "היום" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "אתמול" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "לפני {days} ימים" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "לפני {months} חודשים" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "חודשים" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "שנים" @@ -378,9 +378,10 @@ msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "איפוס הססמה של ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/he/files.po b/l10n/he/files.po index bdb977b5875..90b64157ff9 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -129,7 +129,7 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "ממתין" @@ -161,11 +161,13 @@ msgstr "ביטול" msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "קובץ אחד נשלח" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -213,21 +215,17 @@ msgstr "גודל" msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:763 -msgid "1 folder" -msgstr "תיקייה אחת" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} תיקיות" - -#: js/files.js:773 -msgid "1 file" -msgstr "קובץ אחד" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} קבצים" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 80c6181d839..b938a87bca0 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "שם" msgid "Deleted" msgstr "נמחק" -#: js/trash.js:192 -msgid "1 folder" -msgstr "תיקייה אחת" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} תיקיות" - -#: js/trash.js:202 -msgid "1 file" -msgstr "קובץ אחד" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} קבצים" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index c7bd204b178..a5297272430 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "שניות" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "לפני דקה אחת" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "לפני %d דקות" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "לפני שעה" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "לפני %d שעות" - -#: template/functions.php:85 msgid "today" msgstr "היום" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "אתמול" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "לפני %d ימים" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "חודש שעבר" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "לפני %d חודשים" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "שנה שעברה" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "שנים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 2270abcf21e..b9bb38c3e73 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -378,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 3530d6c912a..0afb104096a 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index cf42b90f128..6ebcc054149 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 93ab01a0ec1..d2b0c7fad22 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index e6bf5892d20..521c5d60347 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Postavke" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "danas" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "jučer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mjeseci" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "godina" @@ -377,9 +381,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud resetiranje lozinke" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 4ff002b38ee..44cc369c33d 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "U tijeku" @@ -160,11 +160,14 @@ msgstr "vrati" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 datoteka se učitava" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -212,21 +215,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 0e918d9686d..76a24e0c67e 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index c8ee9a0b1d2..c9c913ffa16 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "sekundi prije" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "danas" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "jučer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "prošli mjesec" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "prošlu godinu" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "godina" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 85697e39546..5348acb3a5d 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Beállítások" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 perce" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} perce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 órája" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} órája" - -#: js/js.js:819 msgid "today" msgstr "ma" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "tegnap" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} napja" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} hónapja" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "több hónapja" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "tavaly" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "több éve" @@ -379,9 +379,10 @@ msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud jelszó-visszaállítás" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index f1b14131054..241024a5af1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -129,7 +129,7 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Folyamatban" @@ -161,11 +161,13 @@ msgstr "visszavonás" msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fájl töltődik föl" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fájl töltődik föl" @@ -213,21 +215,17 @@ msgstr "Méret" msgid "Modified" msgstr "Módosítva" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fájl" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fájl" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 3c285437d37..4e5d7207c9f 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:30+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Név" msgid "Deleted" msgstr "Törölve" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappa" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fájl" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fájl" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 7203fc91f57..d517cddd328 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "pár másodperce" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 perce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d perce" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 órája" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d órája" - -#: template/functions.php:85 msgid "today" msgstr "ma" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "tegnap" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d napja" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "múlt hónapban" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d hónapja" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "tavaly" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "több éve" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 06cfc86021f..0b7d7fdbaac 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 78f3d8894a7..2849dd25426 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index f04b85a1891..b1c3d308429 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 2ebe68122dc..a5d0fdb5e62 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 15878e30bc8..cb317dbb059 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configurationes" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reinitialisation del contrasigno de ownCLoud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0a41eed86a1..1d30b72298d 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "Dimension" msgid "Modified" msgstr "Modificate" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 32466e7c955..0ac362ef502 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nomine" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 131f9be37a2..c60af2f1aa1 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 3f5ac492f2f..b3db7059779 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Setelan" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 menit yang lalu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} menit yang lalu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 jam yang lalu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} jam yang lalu" - -#: js/js.js:819 msgid "today" msgstr "hari ini" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "kemarin" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} hari yang lalu" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} bulan yang lalu" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "beberapa tahun lalu" @@ -377,9 +373,10 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Menunggu" @@ -160,11 +160,12 @@ msgstr "urungkan" msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 berkas diunggah" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "berkas diunggah" @@ -212,21 +213,15 @@ msgstr "Ukuran" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} folder" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 berkas" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} berkas" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 81e0acc646a..5f5941b22ad 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "Nama" msgid "Deleted" msgstr "Dihapus" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} folder" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 berkas" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} berkas" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 0bcad292387..e1a8dc80a69 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "beberapa detik yang lalu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 menit yang lalu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d menit yang lalu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 jam yang lalu" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d jam yang lalu" - -#: template/functions.php:85 msgid "today" msgstr "hari ini" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "kemarin" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d hari yang lalu" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "bulan kemarin" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d bulan yang lalu" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "tahun kemarin" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/is/core.po b/l10n/is/core.po index 6fea09381a7..478150b094b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Stillingar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sek." -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} min síðan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Fyrir 1 klst." +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "fyrir {hours} klst." - -#: js/js.js:819 msgid "today" msgstr "í dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "í gær" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar síðan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "fyrir {months} mánuðum" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "síðasta ári" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "einhverjum árum" @@ -378,9 +378,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "endursetja ownCloud lykilorð" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/is/files.po b/l10n/is/files.po index c29690db975..41f6c945b1b 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Bíður" @@ -160,11 +160,13 @@ msgstr "afturkalla" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 skrá innsend" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "Stærð" msgid "Modified" msgstr "Breytt" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} möppur" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 skrá" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} skrár" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 814df955bf4..c28f1236b66 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nafn" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappa" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} möppur" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 skrá" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} skrár" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4c909fbf99b..5926c37fa9f 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "sek." #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "fyrir %d mínútum" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Fyrir 1 klst." - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "fyrir %d klst." - -#: template/functions.php:85 msgid "today" msgstr "í dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "í gær" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "fyrir %d dögum" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "síðasta mánuði" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "fyrir %d mánuðum" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "síðasta ári" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/it/core.po b/l10n/it/core.po index 349426a5809..84687acd093 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -140,59 +140,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Un minuto fa" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuti fa" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ora fa" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ore fa" - -#: js/js.js:819 msgid "today" msgstr "oggi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} giorni fa" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mese scorso" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} mesi fa" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesi fa" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "anno scorso" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anni fa" @@ -380,9 +380,10 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "In corso" @@ -162,11 +162,13 @@ msgstr "annulla" msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 file in fase di caricamento" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "caricamento file" @@ -214,21 +216,17 @@ msgstr "Dimensione" msgid "Modified" msgstr "Modificato" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartella" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 file" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} file" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0d65d206eff..188d8e7e9c0 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 cartella" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 file" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} file" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 343d55a8032..506821d1d77 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "secondi fa" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Un minuto fa" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuti fa" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ora fa" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ore fa" - -#: template/functions.php:85 msgid "today" msgstr "oggi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ieri" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d giorni fa" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mese scorso" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d mesi fa" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "anno scorso" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anni fa" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 143f10d687a..07c9dd2169d 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-13 04:30+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -140,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 時間前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 時間前" - -#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨日" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 日前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "一月前" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "一年前" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "年前" @@ -380,9 +376,10 @@ msgstr "更新に成功しました。この問題を \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -132,7 +132,7 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "中断" @@ -164,11 +164,12 @@ msgstr "元に戻す" msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "ファイルを1つアップロード中" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -216,21 +217,15 @@ msgstr "サイズ" msgid "Modified" msgstr "変更" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 フォルダ" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} フォルダ" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ファイル" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ファイル" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index de488024e0c..ca33f876289 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,15 @@ msgstr "名前" msgid "Deleted" msgstr "削除済み" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 フォルダ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} フォルダ" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ファイル" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ファイル" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index c7e5dfa573d..b0374271597 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,42 @@ msgid "seconds ago" msgstr "数秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 時間前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d 時間前" - -#: template/functions.php:85 msgid "today" msgstr "今日" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨日" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 日前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "一月前" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 分前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "一年前" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 2686e55fb62..a553cde32b6 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 წუთის წინ" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 საათის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "დღეს" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "გუშინ" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/ka/files.po b/l10n/ka/files.po index bae4e7aefa5..dc14167acc5 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,12 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +213,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 90098bc62cc..36d83d1478b 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index b16a5efbd16..32eb5dd2cd0 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "წამის წინ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "დღეს" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d დღის წინ" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index e901973de4b..1da987a21ed 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 წუთის წინ" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 საათის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} საათის წინ" - -#: js/js.js:819 msgid "today" msgstr "დღეს" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} დღის წინ" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} თვის წინ" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "წლის წინ" @@ -377,9 +373,10 @@ msgstr "განახლება ვერ განხორციელდ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud პაროლის შეცვლა" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 12252138142..f9ce44f87b2 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -160,11 +160,12 @@ msgstr "დაბრუნება" msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ფაილის ატვირთვა" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -212,21 +213,15 @@ msgstr "ზომა" msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 საქაღალდე" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} საქაღალდე" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ფაილი" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ფაილი" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index e41aedc0bc7..b41813f0a6d 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "სახელი" msgid "Deleted" msgstr "წაშლილი" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 საქაღალდე" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} საქაღალდე" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ფაილი" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ფაილი" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a7b9f8ba3ca..9546faa3400 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "წამის წინ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d საათის წინ" - -#: template/functions.php:85 msgid "today" msgstr "დღეს" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d დღის წინ" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "გასულ თვეში" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d თვის წინ" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ბოლო წელს" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 234999f8973..a6e47dc7edd 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 83638dc16fd..f0bd3f4a111 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,12 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +201,27 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -285,45 +280,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 0f12a8c380b..4a8a4c3ae76 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index a588c33d4d3..6e1f85cdd10 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 415eea4475b..f8be8d34af6 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "설정" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "초 전" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1분 전" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes}분 전" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1시간 전" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours}시간 전" - -#: js/js.js:819 msgid "today" msgstr "오늘" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "어제" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days}일 전" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "지난 달" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months}개월 전" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "개월 전" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "작년" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "년 전" @@ -379,9 +375,10 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "대기 중" @@ -162,11 +162,12 @@ msgstr "되돌리기" msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "파일 1개 업로드 중" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "파일 업로드중" @@ -214,21 +215,15 @@ msgstr "크기" msgid "Modified" msgstr "수정됨" -#: js/files.js:763 -msgid "1 folder" -msgstr "폴더 1개" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "폴더 {count}개" - -#: js/files.js:773 -msgid "1 file" -msgstr "파일 1개" - -#: js/files.js:775 -msgid "{count} files" -msgstr "파일 {count}개" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 3588a2c90b6..3e48f534a18 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "이름" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "폴더 1개" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "폴더 {count}개" - -#: js/trash.js:202 -msgid "1 file" -msgstr "파일 1개" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "파일 {count}개" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 278bf97ba19..7b58ff4c090 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,42 @@ msgid "seconds ago" msgstr "초 전" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1분 전" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d분 전" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1시간 전" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d시간 전" - -#: template/functions.php:85 msgid "today" msgstr "오늘" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "어제" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d일 전" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "지난 달" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d개월 전" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "작년" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "년 전" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 913a671cfbe..bb8c2a9f710 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 571c319066a..fe37c0ff65f 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 214868ccf47..1addb81ba48 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "ناو" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 495e1fd6a7a..4ae5859b98a 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index bd6ae2ec478..8af84cd24e0 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Astellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 Minutt hir" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "virun {minutes} Minutten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "virun 1 Stonn" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "virun {hours} Stonnen" - -#: js/js.js:819 msgid "today" msgstr "haut" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "gëschter" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "virun {days} Deeg" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "leschte Mount" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "virun {months} Méint" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Méint hir" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Joren hir" @@ -378,9 +378,10 @@ msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl der\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "réckgängeg man" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "Gréisst" msgid "Modified" msgstr "Geännert" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6fe10d536f2..6e89845dc20 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Numm" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index a5823a1cfec..1e270aee7ae 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "Sekonnen hir" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 Minutt hir" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "vrun 1 Stonn" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "haut" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "gëschter" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Läschte Mount" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Läscht Joer" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 38880c322a8..40770b80fd5 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,59 +139,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Prieš 1 minutę" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Prieš {count} minutes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "prieš 1 valandą" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "prieš {hours} valandas" - -#: js/js.js:819 msgid "today" msgstr "šiandien" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Prieš {days} dienas" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "prieš {months} mėnesių" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "praeitais metais" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "prieš metus" @@ -379,9 +383,10 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Laukiantis" @@ -161,11 +161,14 @@ msgstr "anuliuoti" msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "įkeliamas 1 failas" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "įkeliami failai" @@ -213,21 +216,19 @@ msgstr "Dydis" msgid "Modified" msgstr "Pakeista" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 aplankalas" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 failas" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} failai" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 65bd9c97b1e..febfc2f1b01 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,21 +52,19 @@ msgstr "Pavadinimas" msgid "Deleted" msgstr "Ištrinti" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 aplankalas" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 failas" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} failai" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 4eee5422b23..14bb5eb6343 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,50 @@ msgid "seconds ago" msgstr "prieš sekundę" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Prieš 1 minutę" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "prieš %d minučių" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "prieš 1 valandą" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "prieš %d valandų" - -#: template/functions.php:85 msgid "today" msgstr "šiandien" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "vakar" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "prieš %d dienų" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "praeitą mėnesį" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "prieš %d mėnesių" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "praeitais metais" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index b8f0f495883..c4920a2fa3a 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pirms 1 minūtes" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pirms {minutes} minūtēm" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "pirms 1 stundas" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "pirms {hours} stundām" - -#: js/js.js:819 msgid "today" msgstr "šodien" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pirms {days} dienām" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "pirms {months} mēnešiem" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "gadus atpakaļ" @@ -377,9 +381,10 @@ msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud paroles maiņa" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 1fa692dd981..c327fc7be6c 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Gaida savu kārtu" @@ -160,11 +160,14 @@ msgstr "atsaukt" msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Augšupielādē 1 datni" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +215,19 @@ msgstr "Izmērs" msgid "Modified" msgstr "Mainīts" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mape" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 datne" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} datnes" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index b6e95e0a2ca..0bee8becab5 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Nosaukums" msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mape" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 datne" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} datnes" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 0574a1bf045..94dcd5afe01 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "sekundes atpakaļ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pirms 1 minūtes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pirms %d minūtēm" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "pirms 1 stundas" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "pirms %d stundām" - -#: template/functions.php:85 msgid "today" msgstr "šodien" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "vakar" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pirms %d dienām" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "pagājušajā mēnesī" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "pirms %d mēnešiem" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "gājušajā gadā" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 57e187e43f9..b99d5913b45 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Подесувања" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "пред 1 минута" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "пред {minutes} минути" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "пред 1 час" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "пред {hours} часови" - -#: js/js.js:819 msgid "today" msgstr "денеска" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "пред {days} денови" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "минатиот месец" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "пред {months} месеци" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "пред месеци" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "минатата година" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "пред години" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ресетирање на лозинка за ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 8d0f82ab972..117b21ccfe4 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Чека" @@ -160,11 +160,13 @@ msgstr "врати" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 датотека се подига" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "Големина" msgid "Modified" msgstr "Променето" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 датотека" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} датотеки" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 9c165cf0406..b92b21c1c47 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Име" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} датотеки" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index c0f63682991..a8128ea681f 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "пред секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "пред 1 минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "пред %d минути" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "пред 1 час" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "пред %d часови" - -#: template/functions.php:85 msgid "today" msgstr "денеска" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "пред %d денови" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "минатиот месец" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "пред %d месеци" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "минатата година" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "пред години" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index bdf5f5b96e4..9cf341368a1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 056f4c8f4b5..35132c50fa2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +202,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +283,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 56f3b0e82b6..42c24ca6423 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 1bbc77ab473..8da360f24d9 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 89d18a2f097..12142533623 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Tetapan" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +373,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Set semula kata lalaun ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 57d517951ba..9f421613c28 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Dalam proses" @@ -160,11 +160,12 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +213,15 @@ msgstr "Saiz" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b083fa30d71..cb56fbd7745 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "Nama" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index d6dd5422be9..529c2d96124 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 3c93697074c..29ad3b362d7 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "ယနေ့" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "နှစ် အရင်က" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 19a7af920ed..dca3d0776b4 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,12 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +213,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 5b874f21745..0611fe45b55 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 924312085e5..bac9d830bf4 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d မိနစ်အရင်က" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d နာရီအရင်က" - -#: template/functions.php:85 msgid "today" msgstr "ယနေ့" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "မနေ့က" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ရက် အရင်က" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d လအရင်က" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "မနှစ်က" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 8650127e346..0201469d378 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutt siden" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timer siden" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dager siden" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "forrige måned" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} måneder siden" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "måneder siden" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "forrige år" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år siden" @@ -378,9 +378,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Tilbakestill ownCloud passord" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index df1d934aedf..84d2868ea50 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ventende" @@ -162,11 +162,13 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil lastes opp" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "filer lastes opp" @@ -214,21 +216,17 @@ msgstr "Størrelse" msgid "Modified" msgstr "Endret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index f7b3957358c..72e2ce3e7bf 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Navn" msgid "Deleted" msgstr "Slettet" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index fe342df879d..5e2ffdb8ffe 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "sekunder siden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutt siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutter siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time siden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timer siden" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dager siden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "forrige måned" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d måneder siden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "forrige år" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år siden" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 70b0faea8ee..d20e5a3d3ab 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 26e7154708e..ece51f1910a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +202,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +283,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 5b7a422b1f9..06099b3a416 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 5ab14347a8f..4fcfd8bc3ea 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 6e4e157eec2..0502d440988 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-11 18:50+0000\n" -"Last-Translator: kwillems \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -140,59 +140,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Instellingen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuut geleden" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuten geleden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 uur geleden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} uren geleden" - -#: js/js.js:819 msgid "today" msgstr "vandaag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "gisteren" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagen geleden" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "vorige maand" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} maanden geleden" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "vorig jaar" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "jaar geleden" @@ -380,9 +380,10 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "In behandeling" @@ -161,11 +161,13 @@ msgstr "ongedaan maken" msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 bestand wordt ge-upload" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -213,21 +215,17 @@ msgstr "Grootte" msgid "Modified" msgstr "Aangepast" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 map" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 bestand" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} bestanden" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 1ec33cc8a54..9227cb640a5 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Naam" msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 map" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 bestand" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} bestanden" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index e134ee29a6e..833787fb045 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "seconden geleden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuut geleden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuten geleden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 uur geleden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d uren geleden" - -#: template/functions.php:85 msgid "today" msgstr "vandaag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "gisteren" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dagen geleden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "vorige maand" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d maanden geleden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "vorig jaar" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index e9f078ccd3e..29908b4d1b9 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutt sidan" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutt sidan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time sidan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timar sidan" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar sidan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "førre månad" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} månadar sidan" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "i fjor" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år sidan" @@ -379,9 +379,10 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Under vegs" @@ -162,11 +162,13 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil lastar opp" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "filer lastar opp" @@ -214,21 +216,17 @@ msgstr "Storleik" msgid "Modified" msgstr "Endra" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index eea84fc24ae..c10ee6cd507 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Namn" msgid "Deleted" msgstr "Sletta" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index ac9c8a7af06..a344f828b7b 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "sekund sidan" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutt sidan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time sidan" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "førre månad" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "i fjor" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år sidan" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 3d809055bc4..33d3488ee96 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuracion" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuta a" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "uèi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ièr" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mes passat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses a" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "an passat" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ans a" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "senhal d'ownCloud tornat botar" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 56a56738f8d..457b51997ef 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Al esperar" @@ -160,11 +160,13 @@ msgstr "defar" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fichièr al amontcargar" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -212,21 +214,17 @@ msgstr "Talha" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 7b98ed67701..1f47311fecd 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Nom" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index b72cc1bad45..7624e587690 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "segonda a" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuta a" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutas a" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "uèi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ièr" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d jorns a" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mes passat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "an passat" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ans a" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 93e154f91b1..5f7f67f6df2 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-13 11:30+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutę temu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minut temu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 godzinę temu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} godzin temu" - -#: js/js.js:819 msgid "today" msgstr "dziś" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dni temu" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} miesięcy temu" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "lat temu" @@ -379,9 +383,10 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Oczekujące" @@ -162,11 +162,14 @@ msgstr "cofnij" msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 plik wczytywany" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "pliki wczytane" @@ -214,21 +217,19 @@ msgstr "Rozmiar" msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "Ilość folderów: {count}" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 plik" - -#: js/files.js:775 -msgid "{count} files" -msgstr "Ilość plików: {count}" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 659a37b2008..fd82c9bdd6d 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,19 @@ msgstr "Nazwa" msgid "Deleted" msgstr "Usunięte" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "Ilość folderów: {count}" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 plik" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "Ilość plików: {count}" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index f9c3b504b9a..6cdef8fb479 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,50 @@ msgid "seconds ago" msgstr "sekund temu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutę temu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minut temu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 godzinę temu" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d godzin temu" - -#: template/functions.php:85 msgid "today" msgstr "dziś" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "wczoraj" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dni temu" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "w zeszłym miesiącu" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d miesiecy temu" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "w zeszłym roku" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1e89128a123..3bfe613cabb 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-11 14:50+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuto atrás" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 hora atrás" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} horas atrás" - -#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ontem" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dias atrás" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "último mês" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} meses atrás" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "último ano" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anos atrás" @@ -379,9 +379,10 @@ msgstr "A atualização falhou. Por favor, relate este problema para a \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendente" @@ -163,11 +163,13 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "enviando 1 arquivo" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "enviando arquivos" @@ -215,21 +217,17 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 arquivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} arquivos" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2141331b272..3464db7a911 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Excluído" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 pasta" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 arquivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} arquivos" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index da1ddabb5f1..b8ce85263af 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuto atrás" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutos atrás" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 hora atrás" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d horas atrás" - -#: template/functions.php:85 msgid "today" msgstr "hoje" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ontem" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dias atrás" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "último mês" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d meses atrás" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "último ano" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 645a5d2a2c6..7b568baecac 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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,59 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configurações" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Há 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Há 1 horas" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Há {hours} horas atrás" - -#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ontem" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dias atrás" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ultímo mês" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Há {months} meses atrás" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ano passado" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anos atrás" @@ -381,9 +381,10 @@ msgstr "A actualização falhou. Por favor reporte este incidente seguindo este msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reposição da password ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 161a889dc9a..496c1b0ba47 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -130,7 +130,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pendente" @@ -162,11 +162,13 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "A enviar 1 ficheiro" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -214,21 +216,17 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index cf52c642066..e23fb508d18 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Apagado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 pasta" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index cb7e1b5f825..890855582cf 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "Minutos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Há 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "há %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Há 1 horas" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Há %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoje" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ontem" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "há %d dias" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ultímo mês" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Há %d meses atrás" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ano passado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 591a3ef6202..39cd512c1a5 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -141,59 +141,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Setări" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut în urmă" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minute in urmă" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Acum o oră" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ore în urmă" - -#: js/js.js:819 msgid "today" msgstr "astăzi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} zile in urmă" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ultima lună" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} luni în urmă" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ultimul an" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ani în urmă" @@ -381,9 +385,10 @@ msgstr "Actualizarea a eșuat! Raportați problema către \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "În așteptare" @@ -163,11 +163,14 @@ msgstr "Anulează ultima acțiune" msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "un fișier se încarcă" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "fișiere se încarcă" @@ -215,21 +218,19 @@ msgstr "Dimensiune" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fisier" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fisiere" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 822b86ba323..59197c9f4fd 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Nume" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fisier" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fisiere" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index fe762ac0523..0aec6a81b4a 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "secunde în urmă" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut în urmă" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minute în urmă" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Acum o ora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ore in urma" - -#: template/functions.php:85 msgid "today" msgstr "astăzi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ieri" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d zile în urmă" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ultima lună" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d luni in urma" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ultimul an" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 41e93a0285a..81dee27e6ca 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -144,59 +144,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 минуту назад" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} минут назад" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "час назад" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} часов назад" - -#: js/js.js:819 msgid "today" msgstr "сегодня" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} дней назад" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} месяцев назад" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "в прошлом году" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "несколько лет назад" @@ -384,9 +388,10 @@ msgstr "При обновлении произошла ошибка. Пожал msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Сброс пароля " +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2df55363970..eed35b95f72 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -132,7 +132,7 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Ожидание" @@ -164,11 +164,14 @@ msgstr "отмена" msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "загружается 1 файл" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "файлы загружаются" @@ -216,21 +219,19 @@ msgstr "Размер" msgid "Modified" msgstr "Изменён" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файлов" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index f76ec68235d..c0a473a4e6d 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Имя" msgid "Deleted" msgstr "Удалён" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файлов" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index af10affa540..fe99071b8b5 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,50 @@ msgid "seconds ago" msgstr "несколько секунд назад" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 минуту назад" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d минут назад" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "час назад" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d часов назад" - -#: template/functions.php:85 msgid "today" msgstr "сегодня" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d дней назад" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "в прошлом месяце" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d месяцев назад" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "в прошлом году" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 7a36141dc71..01e83cce14a 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "අද" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ea23e234100..5311955e9d2 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ගොනුවක් උඩගත කෙරේ" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "ප්‍රමාණය" msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ගොනුවක්" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 249cb24f18a..ef616c5a548 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "නම" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ගොනුවක්" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 1bc00eb43f1..838b32a1fdc 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d මිනිත්තුවන්ට පෙර" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "අද" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ඊයේ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d දිනකට පෙර" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "පෙර මාසයේ" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 05527007267..d92fbb15323 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 7972570bed6..1e164aa3dca 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,14 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +203,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -285,45 +286,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 07aa2e17a0b..322a3dbd56e 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index f9b0c216e02..1956868b0db 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index b57189088d5..025c8016e01 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -138,59 +138,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pred minútou" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minútami" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Pred 1 hodinou" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Pred {hours} hodinami." - -#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "včera" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pred {days} dňami" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Pred {months} mesiacmi." +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "minulý rok" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "pred rokmi" @@ -378,9 +382,10 @@ msgstr "Aktualizácia nebola úspešná. Problém nahláste na \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Prebieha" @@ -161,11 +161,14 @@ msgstr "vrátiť" msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 súbor sa posiela " +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "nahrávanie súborov" @@ -213,21 +216,19 @@ msgstr "Veľkosť" msgid "Modified" msgstr "Upravené" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 priečinok" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} priečinkov" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 súbor" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} súborov" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 08b4ef72b6b..31b22df580b 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,19 @@ msgstr "Názov" msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 priečinok" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} priečinkov" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 súbor" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} súborov" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 3e9b1b4a3a6..b403893d8bb 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,50 @@ msgid "seconds ago" msgstr "pred sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pred minútou" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pred %d minútami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Pred 1 hodinou" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Pred %d hodinami." - -#: template/functions.php:85 msgid "today" msgstr "dnes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včera" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pred %d dňami" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "minulý mesiac" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Pred %d mesiacmi." +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "minulý rok" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 774bca281d1..f659c22faf9 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,67 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pred minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minutami" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Pred 1 uro" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "pred {hours} urami" - -#: js/js.js:819 msgid "today" msgstr "danes" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "včeraj" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pred {days} dnevi" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "pred {months} meseci" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "lansko leto" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "let nazaj" @@ -379,9 +387,10 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "V čakanju ..." @@ -161,11 +161,15 @@ msgstr "razveljavi" msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Pošiljanje 1 datoteke" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -213,21 +217,21 @@ msgstr "Velikost" msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapa" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} map" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 datoteka" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} datotek" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index e565146577a..866885ca0cb 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,21 @@ msgstr "Ime" msgid "Deleted" msgstr "Izbrisano" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mapa" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} map" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 datoteka" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} datotek" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 38ca6281664..fc3455dabda 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,54 @@ msgid "seconds ago" msgstr "pred nekaj sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pred minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pred %d minutami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Pred 1 uro" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Pred %d urami" - -#: template/functions.php:85 msgid "today" msgstr "danes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včeraj" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pred %d dnevi" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "zadnji mesec" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Pred %d meseci" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "lansko leto" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index e38e28341e7..0c6e10ceee2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Parametra" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutë më parë" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuta më parë" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 orë më parë" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} orë më parë" - -#: js/js.js:819 msgid "today" msgstr "sot" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "dje" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ditë më parë" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} muaj më parë" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "vite më parë" @@ -379,9 +379,10 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Pezulluar" @@ -160,11 +160,13 @@ msgstr "anulo" msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Po ngarkohet 1 skedar" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -212,21 +214,17 @@ msgstr "Dimensioni" msgid "Modified" msgstr "Modifikuar" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosje" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosje" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 skedar" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} skedarë" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 5347573c142..cd243657ba0 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "Emri" msgid "Deleted" msgstr "Eliminuar" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dosje" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dosje" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 skedar" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} skedarë" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 25e3c09b581..7fa5b3bf04e 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "sekonda më parë" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutë më parë" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuta më parë" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 orë më parë" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d orë më parë" - -#: template/functions.php:85 msgid "today" msgstr "sot" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "dje" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ditë më parë" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "muajin e shkuar" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d muaj më parë" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "vitin e shkuar" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 0f990ed8f6c..8072e39202b 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Поставке" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "пре 1 минут" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "пре {minutes} минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Пре једног сата" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Пре {hours} сата (сати)" - -#: js/js.js:819 msgid "today" msgstr "данас" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "јуче" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "пре {days} дана" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Пре {months} месеца (месеци)" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "месеци раније" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "прошле године" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "година раније" @@ -377,9 +381,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Поништавање лозинке за ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index daab5774e63..6a510b356b1 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "На чекању" @@ -160,11 +160,14 @@ msgstr "опозови" msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Отпремам 1 датотеку" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "датотеке се отпремају" @@ -212,21 +215,19 @@ msgstr "Величина" msgid "Modified" msgstr "Измењено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 фасцикла" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 датотека" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} датотеке/а" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 18293c900b8..9fed460b7d4 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Име" msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 фасцикла" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} датотеке/а" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index a418274cae5..28031d756c0 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "пре неколико секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "пре 1 минут" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "пре %d минута" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Пре једног сата" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "пре %d сата/и" - -#: template/functions.php:85 msgid "today" msgstr "данас" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "јуче" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "пре %d дана" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "прошлог месеца" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "пре %d месеца/и" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "прошле године" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index a6d89afb957..507913d3bfb 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index e30f663a084..863ac3e7f68 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,14 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +215,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index fc0635646c5..f1524d3b935 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 5ba85046514..fd83ff452b3 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 4edac60fe3a..36486c22d65 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -141,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Inställningar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut sedan" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuter sedan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 timme sedan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timmar sedan" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar sedan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "förra månaden" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} månader sedan" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "månader sedan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "förra året" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år sedan" @@ -381,9 +381,10 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -132,7 +132,7 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Väntar" @@ -164,11 +164,13 @@ msgstr "ångra" msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 filuppladdning" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "filer laddas upp" @@ -216,21 +218,17 @@ msgstr "Storlek" msgid "Modified" msgstr "Ändrad" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapp" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 98a9df0dec9..ac516cb4cb4 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -52,21 +52,17 @@ msgstr "Namn" msgid "Deleted" msgstr "Raderad" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mapp" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 3cbe75628a2..1f5f24739bf 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -208,50 +208,46 @@ msgid "seconds ago" msgstr "sekunder sedan" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut sedan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuter sedan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 timme sedan" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timmar sedan" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dagar sedan" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "förra månaden" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d månader sedan" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "förra året" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 6d9e895375e..19567db98dd 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 1187272d81b..d234fdfc7b3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -200,33 +202,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +283,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 1cce275797a..3edc43234c3 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 234a10d9d7a..ed7bf38925e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 16950f600dc..b39ec3ce71b 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" - -#: js/js.js:819 msgid "today" msgstr "இன்று" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{நாட்கள்} நாட்களுக்கு முன்" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud இன் கடவுச்சொல் மீளமைப்பு" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index c1d5cd594ed..22787fe4795 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -160,11 +160,13 @@ msgstr "முன் செயல் நீக்கம் " msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "அளவு" msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 கோப்புறை" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 கோப்பு" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 83e8e567650..6cf36b94cde 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "பெயர்" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 கோப்புறை" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 கோப்பு" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 783ff8f2259..7b29aad397e 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d நிமிடங்களுக்கு முன்" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d மணித்தியாலத்திற்கு முன்" - -#: template/functions.php:85 msgid "today" msgstr "இன்று" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "நேற்று" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d நாட்களுக்கு முன்" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "கடந்த மாதம்" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d மாதத்திற்கு முன்" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "கடந்த வருடம்" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/te/core.po b/l10n/te/core.po index b295f594858..7cd1f3cd42e 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} నిమిషాల క్రితం" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 గంట క్రితం" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} గంటల క్రితం" - -#: js/js.js:819 msgid "today" msgstr "ఈరోజు" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} రోజుల క్రితం" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} నెలల క్రితం" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/te/files.po b/l10n/te/files.po index c2e030fd6a4..0f9470cfbb8 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "పరిమాణం" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 6fdda4a8c9a..b4d02b22558 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "పేరు" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index eabcbd25c2f..ed3dcbca484 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "క్షణాల క్రితం" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 గంట క్రితం" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "ఈరోజు" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "నిన్న" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "పోయిన నెల" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7b4ed939094..9c1e7c8a3e1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/share.php:97 #, php-format @@ -137,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b019dcaf2ea..47e0ff68ec3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/move.php:17 #, php-format @@ -128,7 +129,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +161,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +215,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ccae79eeea5..362ebe2228c 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 74b7c5caec2..c714c261018 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 a60fec60e8a..79730114d3d 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 a7e74b2c341..5ddde84ff38 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/delete.php:42 #, php-format @@ -51,21 +52,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b0a436cacda..dea5359fc0a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 50f5fe1c07a..a44a0949804 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: app.php:360 msgid "Help" @@ -206,50 +207,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ab7005ac058..03a8a524e9a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 45319f508c2..2c2db08e547 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 1e3b3f5885a..40b6476b9df 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"POT-Creation-Date: 2013-08-15 04:47-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 31137758bb5..b3859255177 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 นาทีก่อนหน้านี้" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} นาทีก่อนหน้านี้" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ชั่วโมงก่อนหน้านี้" - -#: js/js.js:819 msgid "today" msgstr "วันนี้" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{day} วันก่อนหน้านี้" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} เดือนก่อนหน้านี้" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -377,9 +373,10 @@ msgstr "การอัพเดทไม่เป็นผลสำเร็จ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "รีเซ็ตรหัสผ่าน ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index cb5abcd2e66..107f5264514 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -160,11 +160,12 @@ msgstr "เลิกทำ" msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -212,21 +213,15 @@ msgstr "ขนาด" msgid "Modified" msgstr "แก้ไขแล้ว" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 โฟลเดอร์" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ไฟล์" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ไฟล์" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c237d68d6db..d4723ca5dc7 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "ชื่อ" msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 โฟลเดอร์" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ไฟล์" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ไฟล์" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index b637350ae57..afaf5b524b6 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 นาทีก่อนหน้านี้" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d นาทีที่ผ่านมา" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ชั่วโมงก่อนหน้านี้" - -#: template/functions.php:85 msgid "today" msgstr "วันนี้" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d วันที่ผ่านมา" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "เดือนที่แล้ว" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d เดือนมาแล้ว" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ปีที่แล้ว" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 7ede4abab05..9cb943bb0ac 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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:354 +#: js/js.js:355 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 dakika önce" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} dakika önce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 saat önce" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} saat önce" - -#: js/js.js:819 msgid "today" msgstr "bugün" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "dün" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} gün önce" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "geçen ay" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} ay önce" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "ay önce" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "geçen yıl" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "yıl önce" @@ -378,9 +378,10 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Bekliyor" @@ -161,11 +161,13 @@ msgstr "geri al" msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 dosya yüklendi" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -213,21 +215,17 @@ msgstr "Boyut" msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dizin" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosya" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} dosya" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 2fb786621bb..91d3658658d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "İsim" msgid "Deleted" msgstr "Silindi" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dizin" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 dosya" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} dosya" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 7528170e9f9..61357f76689 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,46 @@ msgid "seconds ago" msgstr "saniye önce" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 dakika önce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d dakika önce" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 saat önce" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d saat önce" - -#: template/functions.php:85 msgid "today" msgstr "bugün" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "dün" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d gün önce" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "geçen ay" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d ay önce" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "geçen yıl" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 94de9a84563..962ef65e3e6 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 مىنۇت ئىلگىرى" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 سائەت ئىلگىرى" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "بۈگۈن" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "تۈنۈگۈن" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/ug/files.po b/l10n/ug/files.po index efcb39c0c65..17201c81c7e 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" @@ -160,11 +160,12 @@ msgstr "يېنىۋال" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -212,21 +213,15 @@ msgstr "چوڭلۇقى" msgid "Modified" msgstr "ئۆزگەرتكەن" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 قىسقۇچ" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ھۆججەت" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ھۆججەت" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 39319be3eaf..df0057cd76b 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "ئاتى" msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 قىسقۇچ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ھۆججەت" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ھۆججەت" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 48dee639b00..657d41ba627 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 مىنۇت ئىلگىرى" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d مىنۇت ئىلگىرى" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 سائەت ئىلگىرى" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d سائەت ئىلگىرى" - -#: template/functions.php:85 msgid "today" msgstr "بۈگۈن" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "تۈنۈگۈن" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d كۈن ئىلگىرى" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d ئاي ئىلگىرى" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 193731bd184..e5cc3c9037d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Налаштування" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 хвилину тому" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} хвилин тому" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 годину тому" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} години тому" - -#: js/js.js:819 msgid "today" msgstr "сьогодні" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчора" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} днів тому" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "минулого місяця" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} місяців тому" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "місяці тому" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "минулого року" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "роки тому" @@ -377,9 +381,10 @@ msgstr "Оновлення виконалось неуспішно. Будь л msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "скидання пароля ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index eea8f3ae20c..848b36fa68e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-10 15:40+0000\n" -"Last-Translator: zubr139 \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,7 +129,7 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Очікування" @@ -161,11 +161,14 @@ msgstr "відмінити" msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 файл завантажується" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "файли завантажуються" @@ -213,21 +216,19 @@ msgstr "Розмір" msgid "Modified" msgstr "Змінено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файлів" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 5fbe66a5b70..617e1276bfd 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Soul Kim \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Ім'я" msgid "Deleted" msgstr "Видалено" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файлів" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index b1abbd6210f..7c870f656c1 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,50 @@ msgid "seconds ago" msgstr "секунди тому" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 хвилину тому" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d хвилин тому" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 годину тому" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d годин тому" - -#: template/functions.php:85 msgid "today" msgstr "сьогодні" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчора" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d днів тому" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "минулого місяця" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d місяців тому" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "минулого року" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "роки тому" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 4ce8067cefa..4555d21ef8f 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" +msgid "today" msgstr "" #: js/js.js:819 -msgid "today" +msgid "yesterday" msgstr "" #: js/js.js:820 -msgid "yesterday" -msgstr "" +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:821 -msgid "{days} days ago" +msgid "last month" msgstr "" #: js/js.js:822 -msgid "last month" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:823 -msgid "{months} months ago" -msgstr "" - -#: js/js.js:824 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "اون کلاؤڈ پاسورڈ ری سیٹ" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index b2f06ff4430..398838a0f1f 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,13 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +214,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index d85ab6432fa..7ccb9117fbd 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index ad996c8d728..4c170b1074a 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 72441fce39d..b8bfc91292b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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:354 +#: js/js.js:355 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 phút trước" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} phút trước" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 giờ trước" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} giờ trước" - -#: js/js.js:819 msgid "today" msgstr "hôm nay" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ngày trước" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "tháng trước" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} tháng trước" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "tháng trước" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "năm trước" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "năm trước" @@ -378,9 +374,10 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "Đang chờ" @@ -161,11 +161,12 @@ msgstr "lùi lại" msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 tệp tin đang được tải lên" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -213,21 +214,15 @@ msgstr "Kích cỡ" msgid "Modified" msgstr "Thay đổi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 thư mục" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} thư mục" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 tập tin" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} tập tin" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index b69967e63f5..c0a3d67ec4a 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "Tên" msgid "Deleted" msgstr "Đã xóa" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 thư mục" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} thư mục" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 tập tin" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} tập tin" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 1c48010ea94..e7c2745b8dd 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "vài giây trước" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 phút trước" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d phút trước" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 giờ trước" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d giờ trước" - -#: template/functions.php:85 msgid "today" msgstr "hôm nay" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hôm qua" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ngày trước" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "tháng trước" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d tháng trước" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "năm trước" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "năm trước" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index da50021469e..d49b821a1b4 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -140,59 +140,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "设置" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分钟前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1小时前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours}小时前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "上个月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months}月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "年前" @@ -380,9 +376,10 @@ msgstr "升级失败。请向\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "等待中" @@ -161,11 +161,12 @@ msgstr "撤销" msgid "perform delete operation" msgstr "执行删除" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 个文件正在上传" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "个文件正在上传" @@ -213,21 +214,15 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 个文件夹" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 861e81116ef..2de2aefb281 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "名称" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 4a5edd4eb90..7778e2a7cf9 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分钟前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1小时前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上个月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 69afa4418f4..e77bfe2828e 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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:354 +#: js/js.js:355 msgid "Settings" msgstr "设置" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "一分钟前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1小时前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 小时前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "上月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "年前" @@ -379,9 +375,10 @@ msgstr "更新不成功。请汇报将此问题汇报给 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "等待" @@ -163,11 +163,12 @@ msgstr "撤销" msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1个文件上传中" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "文件上传中" @@ -215,21 +216,15 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:763 -msgid "1 folder" -msgstr "1个文件夹" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index cc5197cd7ae..9be866b5f3e 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "名称" msgid "Deleted" msgstr "已删除" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 42595eb834b..79efb5ea2f0 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,42 @@ msgid "seconds ago" msgstr "秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "一分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分钟前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1小时前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d小时前" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 月前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 9ffbcd611bf..8c3d1f0833b 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -137,59 +137,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 -msgid "seconds ago" -msgstr "" - #: js/js.js:815 -msgid "1 minute ago" +msgid "seconds ago" msgstr "" #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨日" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "前一月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "個月之前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功, 正" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index bcfe27f804a..32ba5c844bf 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -128,7 +128,7 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "" @@ -160,11 +160,12 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "" @@ -212,21 +213,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{}文件夾" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index f6d1a1f771e..31ad547f9b1 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "名稱" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" - -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{}文件夾" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 49bbac659bb..f9da45cb7cf 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -206,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "今日" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨日" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "前一月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 6937d38e06b..2014ec345c8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:07+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分鐘前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分鐘前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 小時之前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 小時前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "上個月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 個月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "幾個月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "幾年前" @@ -379,9 +375,10 @@ msgstr "升級失敗,請將此問題回報 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -129,7 +129,7 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:467 msgid "Pending" msgstr "等候中" @@ -161,11 +161,12 @@ msgstr "復原" msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 個檔案正在上傳" +#: js/filelist.js:455 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:520 msgid "files uploading" msgstr "檔案正在上傳中" @@ -213,21 +214,15 @@ msgstr "大小" msgid "Modified" msgstr "修改" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 個資料夾" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 個資料夾" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 個檔案" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 個檔案" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index ca7ca5130f1..f51e340bf86 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -51,21 +51,15 @@ msgstr "名稱" msgid "Deleted" msgstr "已刪除" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 個資料夾" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 個資料夾" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 個檔案" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 個檔案" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index e95a387cf3f..9f99db8fe3c 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-11 08:07-0400\n" -"PO-Revision-Date: 2013-08-11 12:08+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+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" @@ -207,50 +207,42 @@ msgid "seconds ago" msgstr "幾秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分鐘前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分鐘前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 小時之前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d 小時之前" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上個月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 個月之前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "幾年前" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index d17df6563bc..a1fa3c848d2 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -5,6 +5,10 @@ $TRANSLATIONS = array( "Settings" => "Instellings", "Users" => "Gebruikers", "Admin" => "Admin", -"web services under your control" => "webdienste onder jou beheer" +"web services under your control" => "webdienste onder jou beheer", +"_%n minute ago_::_%n minutes ago_" => 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/ar.php b/lib/l10n/ar.php index ca48fc39f9b..8225fd17a2f 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", "Please double check the installation guides." => "الرجاء التحقق من دليل التنصيب.", "seconds ago" => "منذ ثواني", -"1 minute ago" => "منذ دقيقة", -"%d minutes ago" => "%d دقيقة مضت", -"1 hour ago" => "قبل ساعة مضت", -"%d hours ago" => "%d ساعة مضت", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "اليوم", "yesterday" => "يوم أمس", -"%d days ago" => "%d يوم مضى", +"_%n day go_::_%n days ago_" => array(,), "last month" => "الشهر الماضي", -"%d months ago" => "%d شهر مضت", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" diff --git a/lib/l10n/be.php b/lib/l10n/be.php new file mode 100644 index 00000000000..a5d399a3105 --- /dev/null +++ b/lib/l10n/be.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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index a366199235e..021d924d380 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -38,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", "seconds ago" => "преди секунди", -"1 minute ago" => "преди 1 минута", -"%d minutes ago" => "преди %d минути", -"1 hour ago" => "преди 1 час", -"%d hours ago" => "преди %d часа", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "днес", "yesterday" => "вчера", -"%d days ago" => "преди %d дни", +"_%n day go_::_%n days ago_" => array(,), "last month" => "последният месец", -"%d months ago" => "преди %d месеца", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "последната година", "years ago" => "последните години", "Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 2e89f1034f2..5b3610d9846 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -16,13 +16,13 @@ $TRANSLATIONS = array( "Files" => "ফাইল", "Text" => "টেক্সট", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "১ মিনিট পূর্বে", -"%d minutes ago" => "%d মিনিট পূর্বে", -"1 hour ago" => "1 ঘন্টা পূর্বে", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "আজ", "yesterday" => "গতকাল", -"%d days ago" => "%d দিন পূর্বে", +"_%n day go_::_%n days ago_" => array(,), "last month" => "গত মাস", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "গত বছর", "years ago" => "বছর পূর্বে" ); diff --git a/lib/l10n/bs.php b/lib/l10n/bs.php new file mode 100644 index 00000000000..aa8e01b803d --- /dev/null +++ b/lib/l10n/bs.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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index bf7c3f8b459..a14c12ba964 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", "Please double check the installation guides." => "Comproveu les guies d'instal·lació.", "seconds ago" => "segons enrere", -"1 minute ago" => "fa 1 minut", -"%d minutes ago" => "fa %d minuts", -"1 hour ago" => "fa 1 hora", -"%d hours ago" => "fa %d hores", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "avui", "yesterday" => "ahir", -"%d days ago" => "fa %d dies", +"_%n day go_::_%n days ago_" => array(,), "last month" => "el mes passat", -"%d months ago" => "fa %d mesos", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "l'any passat", "years ago" => "anys enrere", "Caused by:" => "Provocat per:", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index c0e0ac6a67b..48f51361eef 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -41,15 +41,13 @@ $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í.", "seconds ago" => "před pár sekundami", -"1 minute ago" => "před minutou", -"%d minutes ago" => "před %d minutami", -"1 hour ago" => "před hodinou", -"%d hours ago" => "před %d hodinami", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dnes", "yesterday" => "včera", -"%d days ago" => "před %d dny", +"_%n day go_::_%n days ago_" => array(,), "last month" => "minulý měsíc", -"%d months ago" => "před %d měsíci", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "minulý rok", "years ago" => "před lety", "Caused by:" => "Příčina:", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 15b54e4cc6e..9070897b164 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "seconds ago" => "eiliad yn ôl", -"1 minute ago" => "1 munud yn ôl", -"%d minutes ago" => "%d munud yn ôl", -"1 hour ago" => "1 awr yn ôl", -"%d hours ago" => "%d awr yn ôl", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "heddiw", "yesterday" => "ddoe", -"%d days ago" => "%d diwrnod yn ôl", +"_%n day go_::_%n days ago_" => array(,), "last month" => "mis diwethaf", -"%d months ago" => "%d mis yn ôl", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Could not find category \"%s\"" => "Methu canfod categori \"%s\"" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 81650f7eeed..62a4bfda9e1 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minut siden", -"%d minutes ago" => "%d minutter siden", -"1 hour ago" => "1 time siden", -"%d hours ago" => "%d timer siden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dage siden", +"_%n day go_::_%n days ago_" => array(,), "last month" => "sidste måned", -"%d months ago" => "%d måneder siden", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "sidste år", "years ago" => "år siden", "Caused by:" => "Forårsaget af:", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index c3bb8912f70..2a0eed151fa 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"1 minute ago" => "vor einer Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_AT.php b/lib/l10n/de_AT.php new file mode 100644 index 00000000000..b2de92ed491 --- /dev/null +++ b/lib/l10n/de_AT.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/de_CH.php b/lib/l10n/de_CH.php index d100afef3f9..b98e1dc2f9c 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 05cc103c869..104ca305208 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array(,), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 7433113f810..12b718d183f 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "seconds ago" => "δευτερόλεπτα πριν", -"1 minute ago" => "1 λεπτό πριν", -"%d minutes ago" => "%d λεπτά πριν", -"1 hour ago" => "1 ώρα πριν", -"%d hours ago" => "%d ώρες πριν", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "σήμερα", "yesterday" => "χτες", -"%d days ago" => "%d ημέρες πριν", +"_%n day go_::_%n days ago_" => array(,), "last month" => "τελευταίο μήνα", -"%d months ago" => "%d μήνες πριν", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Caused by:" => "Προκλήθηκε από:", diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php index a86492d2a93..15f8256f3b3 100644 --- a/lib/l10n/en@pirate.php +++ b/lib/l10n/en@pirate.php @@ -1,5 +1,9 @@ "web services under your control" +"web services under your control" => "web services under your control", +"_%n minute ago_::_%n minutes ago_" => 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/eo.php b/lib/l10n/eo.php index 196cdd66900..b769292b8f8 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -34,15 +34,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", "Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "seconds ago" => "sekundoj antaŭe", -"1 minute ago" => "antaŭ 1 minuto", -"%d minutes ago" => "antaŭ %d minutoj", -"1 hour ago" => "antaŭ 1 horo", -"%d hours ago" => "antaŭ %d horoj", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"%d days ago" => "antaŭ %d tagoj", +"_%n day go_::_%n days ago_" => array(,), "last month" => "lastamonate", -"%d months ago" => "antaŭ %d monatoj", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 70dc0c0e92c..36857786487 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "hace segundos", -"1 minute ago" => "hace 1 minuto", -"%d minutes ago" => "hace %d minutos", -"1 hour ago" => "Hace 1 hora", -"%d hours ago" => "Hace %d horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoy", "yesterday" => "ayer", -"%d days ago" => "hace %d días", +"_%n day go_::_%n days ago_" => array(,), "last month" => "mes pasado", -"%d months ago" => "Hace %d meses", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "año pasado", "years ago" => "hace años", "Caused by:" => "Causado por:", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 6208e3eb472..5e27a74b5db 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", "seconds ago" => "segundos atrás", -"1 minute ago" => "hace 1 minuto", -"%d minutes ago" => "hace %d minutos", -"1 hour ago" => "hace 1 hora", -"%d hours ago" => "hace %d horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoy", "yesterday" => "ayer", -"%d days ago" => "hace %d días", +"_%n day go_::_%n days ago_" => array(,), "last month" => "el mes pasado", -"%d months ago" => "hace %d meses", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "el año pasado", "years ago" => "años atrás", "Caused by:" => "Provocado por:", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 1dff8545240..cf6bf919158 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "sekundit tagasi", -"1 minute ago" => "1 minut tagasi", -"%d minutes ago" => "%d minutit tagasi", -"1 hour ago" => "1 tund tagasi", -"%d hours ago" => "%d tundi tagasi", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "täna", "yesterday" => "eile", -"%d days ago" => "%d päeva tagasi", +"_%n day go_::_%n days ago_" => array(,), "last month" => "viimasel kuul", -"%d months ago" => "%d kuud tagasi", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Caused by:" => "Põhjustaja:", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 006b3941513..b03e1868912 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez begiratu instalazio gidak.", "seconds ago" => "segundu", -"1 minute ago" => "orain dela minutu 1", -"%d minutes ago" => "orain dela %d minutu", -"1 hour ago" => "orain dela ordu bat", -"%d hours ago" => "orain dela %d ordu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "gaur", "yesterday" => "atzo", -"%d days ago" => "orain dela %d egun", +"_%n day go_::_%n days ago_" => array(,), "last month" => "joan den hilabetean", -"%d months ago" => "orain dela %d hilabete", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "joan den urtean", "years ago" => "urte", "Caused by:" => "Honek eraginda:", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index dd313d9d862..66c464cce39 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -38,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", -"1 minute ago" => "1 دقیقه پیش", -"%d minutes ago" => "%d دقیقه پیش", -"1 hour ago" => "1 ساعت پیش", -"%d hours ago" => "%d ساعت پیش", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "امروز", "yesterday" => "دیروز", -"%d days ago" => "%d روز پیش", +"_%n day go_::_%n days ago_" => array(,), "last month" => "ماه قبل", -"%d months ago" => "%dماه پیش", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "سال قبل", "years ago" => "سال‌های قبل", "Could not find category \"%s\"" => "دسته بندی %s یافت نشد" diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 7ce9fcaabca..50342caa098 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -34,15 +34,13 @@ $TRANSLATIONS = array( "Set an admin password." => "Aseta ylläpitäjän salasana.", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "seconds ago" => "sekuntia sitten", -"1 minute ago" => "1 minuutti sitten", -"%d minutes ago" => "%d minuuttia sitten", -"1 hour ago" => "1 tunti sitten", -"%d hours ago" => "%d tuntia sitten", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "tänään", "yesterday" => "eilen", -"%d days ago" => "%d päivää sitten", +"_%n day go_::_%n days ago_" => array(,), "last month" => "viime kuussa", -"%d months ago" => "%d kuukautta sitten", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 48e12f7b20f..21e4b561df5 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -38,15 +38,13 @@ $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.", "seconds ago" => "il y a quelques secondes", -"1 minute ago" => "il y a une minute", -"%d minutes ago" => "il y a %d minutes", -"1 hour ago" => "Il y a une heure", -"%d hours ago" => "Il y a %d heures", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "aujourd'hui", "yesterday" => "hier", -"%d days ago" => "il y a %d jours", +"_%n day go_::_%n days ago_" => array(,), "last month" => "le mois dernier", -"%d months ago" => "Il y a %d mois", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 77d672e1450..9196fc6b6cf 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -41,15 +41,13 @@ $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", "seconds ago" => "segundos atrás", -"1 minute ago" => "hai 1 minuto", -"%d minutes ago" => "hai %d minutos", -"1 hour ago" => "Vai 1 hora", -"%d hours ago" => "Vai %d horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoxe", "yesterday" => "onte", -"%d days ago" => "hai %d días", +"_%n day go_::_%n days ago_" => array(,), "last month" => "último mes", -"%d months ago" => "Vai %d meses", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 8a33cb393fe..4190769f2b7 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -19,15 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", "Please double check the installation guides." => "נא לעיין שוב במדריכי ההתקנה.", "seconds ago" => "שניות", -"1 minute ago" => "לפני דקה אחת", -"%d minutes ago" => "לפני %d דקות", -"1 hour ago" => "לפני שעה", -"%d hours ago" => "לפני %d שעות", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "היום", "yesterday" => "אתמול", -"%d days ago" => "לפני %d ימים", +"_%n day go_::_%n days ago_" => array(,), "last month" => "חודש שעבר", -"%d months ago" => "לפני %d חודשים", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "שנה שעברה", "years ago" => "שנים", "Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index efa06eec8a7..1e7605e4bbf 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -3,6 +3,10 @@ $TRANSLATIONS = array( "Help" => "सहयोग", "Personal" => "यक्तिगत", "Settings" => "सेटिंग्स", -"Users" => "उपयोगकर्ता" +"Users" => "उपयोगकर्ता", +"_%n minute ago_::_%n minutes ago_" => 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/hr.php b/lib/l10n/hr.php index 9223b4c9ccb..39298b4ccff 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -10,9 +10,13 @@ $TRANSLATIONS = array( "Files" => "Datoteke", "Text" => "Tekst", "seconds ago" => "sekundi prije", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "danas", "yesterday" => "jučer", +"_%n day go_::_%n days ago_" => array(,), "last month" => "prošli mjesec", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "prošlu godinu", "years ago" => "godina" ); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 6231d9c3cab..e3dc649b3a6 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "seconds ago" => "pár másodperce", -"1 minute ago" => "1 perce", -"%d minutes ago" => "%d perce", -"1 hour ago" => "1 órája", -"%d hours ago" => "%d órája", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ma", "yesterday" => "tegnap", -"%d days ago" => "%d napja", +"_%n day go_::_%n days ago_" => array(,), "last month" => "múlt hónapban", -"%d months ago" => "%d hónapja", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "tavaly", "years ago" => "több éve", "Caused by:" => "Okozta:", diff --git a/lib/l10n/hy.php b/lib/l10n/hy.php new file mode 100644 index 00000000000..b2de92ed491 --- /dev/null +++ b/lib/l10n/hy.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/ia.php b/lib/l10n/ia.php index a7fee63892b..57ec37f4f4e 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -7,6 +7,10 @@ $TRANSLATIONS = array( "Admin" => "Administration", "web services under your control" => "servicios web sub tu controlo", "Files" => "Files", -"Text" => "Texto" +"Text" => "Texto", +"_%n minute ago_::_%n minutes ago_" => 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/id.php b/lib/l10n/id.php index d37c8c25493..4d2a10c3b85 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", "seconds ago" => "beberapa detik yang lalu", -"1 minute ago" => "1 menit yang lalu", -"%d minutes ago" => "%d menit yang lalu", -"1 hour ago" => "1 jam yang lalu", -"%d hours ago" => "%d jam yang lalu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hari ini", "yesterday" => "kemarin", -"%d days ago" => "%d hari yang lalu", +"_%n day go_::_%n days ago_" => array(,), "last month" => "bulan kemarin", -"%d months ago" => "%d bulan yang lalu", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" diff --git a/lib/l10n/is.php b/lib/l10n/is.php index b1402f1df49..b3d63b060a7 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -17,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Texti", "Images" => "Myndir", "seconds ago" => "sek.", -"1 minute ago" => "Fyrir 1 mínútu", -"%d minutes ago" => "fyrir %d mínútum", -"1 hour ago" => "Fyrir 1 klst.", -"%d hours ago" => "fyrir %d klst.", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "í dag", "yesterday" => "í gær", -"%d days ago" => "fyrir %d dögum", +"_%n day go_::_%n days ago_" => array(,), "last month" => "síðasta mánuði", -"%d months ago" => "fyrir %d mánuðum", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 50723eecbbe..3975eeebfac 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "secondi fa", -"1 minute ago" => "Un minuto fa", -"%d minutes ago" => "%d minuti fa", -"1 hour ago" => "1 ora fa", -"%d hours ago" => "%d ore fa", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "oggi", "yesterday" => "ieri", -"%d days ago" => "%d giorni fa", +"_%n day go_::_%n days ago_" => array(,), "last month" => "mese scorso", -"%d months ago" => "%d mesi fa", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "anno scorso", "years ago" => "anni fa", "Caused by:" => "Causato da:", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 6561343eaee..6724a2c5ae2 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", "seconds ago" => "数秒前", -"1 minute ago" => "1 分前", -"%d minutes ago" => "%d 分前", -"1 hour ago" => "1 時間前", -"%d hours ago" => "%d 時間前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今日", "yesterday" => "昨日", -"%d days ago" => "%d 日前", +"_%n day go_::_%n days ago_" => array(,), "last month" => "一月前", -"%d months ago" => "%d 分前", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "一年前", "years ago" => "年前", "Caused by:" => "原因は以下:", diff --git a/lib/l10n/ka.php b/lib/l10n/ka.php index b6e06997638..d5f9c783b65 100644 --- a/lib/l10n/ka.php +++ b/lib/l10n/ka.php @@ -7,11 +7,11 @@ $TRANSLATIONS = array( "ZIP download is turned off." => "ZIP გადმოწერა გამორთულია", "Files" => "ფაილები", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"%d minutes ago" => "%d წუთის წინ", -"1 hour ago" => "1 საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "დღეს", "yesterday" => "გუშინ", -"%d days ago" => "%d დღის წინ" +"_%n day go_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index c03cccf1361..83a8f0415e1 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", "Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"%d minutes ago" => "%d წუთის წინ", -"1 hour ago" => "1 საათის წინ", -"%d hours ago" => "%d საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "დღეს", "yesterday" => "გუშინ", -"%d days ago" => "%d დღის წინ", +"_%n day go_::_%n days ago_" => array(,), "last month" => "გასულ თვეში", -"%d months ago" => "%d თვის წინ", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/lib/l10n/kn.php b/lib/l10n/kn.php new file mode 100644 index 00000000000..7ffe04ae962 --- /dev/null +++ b/lib/l10n/kn.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=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 734b6c6a072..d23dd51665a 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -27,15 +27,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", "Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", -"1 minute ago" => "1분 전", -"%d minutes ago" => "%d분 전", -"1 hour ago" => "1시간 전", -"%d hours ago" => "%d시간 전", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "오늘", "yesterday" => "어제", -"%d days ago" => "%d일 전", +"_%n day go_::_%n days ago_" => array(,), "last month" => "지난 달", -"%d months ago" => "%d개월 전", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "작년", "years ago" => "년 전", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다." diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index a2a6e237b99..b17b3a86992 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -4,6 +4,10 @@ $TRANSLATIONS = array( "Settings" => "ده‌ستكاری", "Users" => "به‌كارهێنه‌ر", "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", -"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", +"_%n minute ago_::_%n minutes ago_" => 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/lb.php b/lib/l10n/lb.php index 84114a6926d..a32a1fe8647 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -10,11 +10,13 @@ $TRANSLATIONS = array( "Files" => "Dateien", "Text" => "SMS", "seconds ago" => "Sekonnen hir", -"1 minute ago" => "1 Minutt hir", -"1 hour ago" => "vrun 1 Stonn", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "haut", "yesterday" => "gëschter", +"_%n day go_::_%n days ago_" => array(,), "last month" => "Läschte Mount", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "Läscht Joer", "years ago" => "Joren hier" ); diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 4aab3f1113d..8d90cf52a70 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -17,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Žinučių", "Images" => "Paveikslėliai", "seconds ago" => "prieš sekundę", -"1 minute ago" => "Prieš 1 minutę", -"%d minutes ago" => "prieš %d minučių", -"1 hour ago" => "prieš 1 valandą", -"%d hours ago" => "prieš %d valandų", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "šiandien", "yesterday" => "vakar", -"%d days ago" => "prieš %d dienų", +"_%n day go_::_%n days ago_" => array(,), "last month" => "praeitą mėnesį", -"%d months ago" => "prieš %d mėnesių", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "praeitais metais", "years ago" => "prieš metus" ); diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 38cf55549dd..8031cd027da 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta.", "Please double check the installation guides." => "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību.", "seconds ago" => "sekundes atpakaļ", -"1 minute ago" => "pirms 1 minūtes", -"%d minutes ago" => "pirms %d minūtēm", -"1 hour ago" => "pirms 1 stundas", -"%d hours ago" => "pirms %d stundām", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "šodien", "yesterday" => "vakar", -"%d days ago" => "pirms %d dienām", +"_%n day go_::_%n days ago_" => array(,), "last month" => "pagājušajā mēnesī", -"%d months ago" => "pirms %d mēnešiem", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index e4a6afef492..847dcd637d1 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -17,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Текст", "Images" => "Слики", "seconds ago" => "пред секунди", -"1 minute ago" => "пред 1 минута", -"%d minutes ago" => "пред %d минути", -"1 hour ago" => "пред 1 час", -"%d hours ago" => "пред %d часови", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "денеска", "yesterday" => "вчера", -"%d days ago" => "пред %d денови", +"_%n day go_::_%n days ago_" => array(,), "last month" => "минатиот месец", -"%d months ago" => "пред %d месеци", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "минатата година", "years ago" => "пред години", "Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" diff --git a/lib/l10n/ml_IN.php b/lib/l10n/ml_IN.php new file mode 100644 index 00000000000..b2de92ed491 --- /dev/null +++ b/lib/l10n/ml_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/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index be7d626ccb7..bdd6bdb2b38 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -8,6 +8,10 @@ $TRANSLATIONS = array( "web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Authentication error" => "Ralat pengesahan", "Files" => "Fail-fail", -"Text" => "Teks" +"Text" => "Teks", +"_%n minute ago_::_%n minutes ago_" => 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=1; plural=0;"; diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index 613b58a87cc..c70fef857f8 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -14,15 +14,13 @@ $TRANSLATIONS = array( "Text" => "စာသား", "Images" => "ပုံရိပ်များ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"1 minute ago" => "၁ မိနစ်အရင်က", -"%d minutes ago" => "%d မိနစ်အရင်က", -"1 hour ago" => "၁ နာရီ အရင်က", -"%d hours ago" => "%d နာရီအရင်က", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ယနေ့", "yesterday" => "မနေ့က", -"%d days ago" => "%d ရက် အရင်က", +"_%n day go_::_%n days ago_" => array(,), "last month" => "ပြီးခဲ့သောလ", -"%d months ago" => "%d လအရင်က", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index dbc0788f4b0..69787c400f2 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -19,15 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minutt siden", -"%d minutes ago" => "%d minutter siden", -"1 hour ago" => "1 time siden", -"%d hours ago" => "%d timer siden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dager siden", +"_%n day go_::_%n days ago_" => array(,), "last month" => "forrige måned", -"%d months ago" => "%d måneder siden", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "forrige år", "years ago" => "år siden", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" diff --git a/lib/l10n/ne.php b/lib/l10n/ne.php new file mode 100644 index 00000000000..b2de92ed491 --- /dev/null +++ b/lib/l10n/ne.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/nl.php b/lib/l10n/nl.php index 6f8d01f5943..c8616fcbb85 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the installation guides." => "Controleer de installatiehandleiding goed.", "seconds ago" => "seconden geleden", -"1 minute ago" => "1 minuut geleden", -"%d minutes ago" => "%d minuten geleden", -"1 hour ago" => "1 uur geleden", -"%d hours ago" => "%d uren geleden", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "vandaag", "yesterday" => "gisteren", -"%d days ago" => "%d dagen geleden", +"_%n day go_::_%n days ago_" => array(,), "last month" => "vorige maand", -"%d months ago" => "%d maanden geleden", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "vorig jaar", "years ago" => "jaar geleden", "Caused by:" => "Gekomen door:", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 712b1e42375..4efc4f8e0d6 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -12,11 +12,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt.", "Please double check the installation guides." => "Ver vennleg og dobbeltsjekk installasjonsrettleiinga.", "seconds ago" => "sekund sidan", -"1 minute ago" => "1 minutt sidan", -"1 hour ago" => "1 time sidan", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", +"_%n day go_::_%n days ago_" => array(,), "last month" => "førre månad", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "i fjor", "years ago" => "år sidan" ); diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index be7f3b43a2d..0fc38d0ff2c 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -12,12 +12,13 @@ $TRANSLATIONS = array( "Authentication error" => "Error d'autentificacion", "Files" => "Fichièrs", "seconds ago" => "segonda a", -"1 minute ago" => "1 minuta a", -"%d minutes ago" => "%d minutas a", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "uèi", "yesterday" => "ièr", -"%d days ago" => "%d jorns a", +"_%n day go_::_%n days ago_" => array(,), "last month" => "mes passat", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "an passat", "years ago" => "ans a" ); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index ff75eca6683..edbddeeace5 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "sekund temu", -"1 minute ago" => "1 minutę temu", -"%d minutes ago" => "%d minut temu", -"1 hour ago" => "1 godzinę temu", -"%d hours ago" => "%d godzin temu", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dziś", "yesterday" => "wczoraj", -"%d days ago" => "%d dni temu", +"_%n day go_::_%n days ago_" => array(,), "last month" => "w zeszłym miesiącu", -"%d months ago" => "%d miesiecy temu", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "w zeszłym roku", "years ago" => "lat temu", "Caused by:" => "Spowodowane przez:", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index fa7dd092519..75987409e70 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "segundos atrás", -"1 minute ago" => "1 minuto atrás", -"%d minutes ago" => "%d minutos atrás", -"1 hour ago" => "1 hora atrás", -"%d hours ago" => "%d horas atrás", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoje", "yesterday" => "ontem", -"%d days ago" => "%d dias atrás", +"_%n day go_::_%n days ago_" => array(,), "last month" => "último mês", -"%d months ago" => "%d meses atrás", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causados ​​por:", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 9411df0be3a..7518aba2a41 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -41,15 +41,13 @@ $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 não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the installation guides." => "Por favor verifique installation guides.", "seconds ago" => "Minutos atrás", -"1 minute ago" => "Há 1 minuto", -"%d minutes ago" => "há %d minutos", -"1 hour ago" => "Há 1 horas", -"%d hours ago" => "Há %d horas", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hoje", "yesterday" => "ontem", -"%d days ago" => "há %d dias", +"_%n day go_::_%n days ago_" => array(,), "last month" => "ultímo mês", -"%d months ago" => "Há %d meses atrás", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "ano passado", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index f56ee7323f5..788e57f1703 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -20,15 +20,13 @@ $TRANSLATIONS = array( "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.", "seconds ago" => "secunde în urmă", -"1 minute ago" => "1 minut în urmă", -"%d minutes ago" => "%d minute în urmă", -"1 hour ago" => "Acum o ora", -"%d hours ago" => "%d ore in urma", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "astăzi", "yesterday" => "ieri", -"%d days ago" => "%d zile în urmă", +"_%n day go_::_%n days ago_" => array(,), "last month" => "ultima lună", -"%d months ago" => "%d luni in urma", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "ultimul an", "years ago" => "ani în urmă", "Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 469acb0a1f0..a723dfc1113 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -41,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", "seconds ago" => "несколько секунд назад", -"1 minute ago" => "1 минуту назад", -"%d minutes ago" => "%d минут назад", -"1 hour ago" => "час назад", -"%d hours ago" => "%d часов назад", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "сегодня", "yesterday" => "вчера", -"%d days ago" => "%d дней назад", +"_%n day go_::_%n days ago_" => array(,), "last month" => "в прошлом месяце", -"%d months ago" => "%d месяцев назад", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Caused by:" => "Вызвано:", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index f09dee7c6cc..6f0d96f044e 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -17,12 +17,13 @@ $TRANSLATIONS = array( "Text" => "පෙළ", "Images" => "අනු රූ", "seconds ago" => "තත්පරයන්ට පෙර", -"1 minute ago" => "1 මිනිත්තුවකට පෙර", -"%d minutes ago" => "%d මිනිත්තුවන්ට පෙර", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "අද", "yesterday" => "ඊයේ", -"%d days ago" => "%d දිනකට පෙර", +"_%n day go_::_%n days ago_" => array(,), "last month" => "පෙර මාසයේ", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර" ); diff --git a/lib/l10n/sk.php b/lib/l10n/sk.php new file mode 100644 index 00000000000..abc5a2556c9 --- /dev/null +++ b/lib/l10n/sk.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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index a3e6a17aaac..b1a6ee07a5c 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -41,15 +41,13 @@ $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 nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the installation guides." => "Prosím skontrolujte inštalačnú príručku.", "seconds ago" => "pred sekundami", -"1 minute ago" => "pred minútou", -"%d minutes ago" => "pred %d minútami", -"1 hour ago" => "Pred 1 hodinou", -"%d hours ago" => "Pred %d hodinami.", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "dnes", "yesterday" => "včera", -"%d days ago" => "pred %d dňami", +"_%n day go_::_%n days ago_" => array(,), "last month" => "minulý mesiac", -"%d months ago" => "Pred %d mesiacmi.", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "minulý rok", "years ago" => "pred rokmi", "Caused by:" => "Príčina:", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 4423155fd95..0e918a9f156 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -38,15 +38,13 @@ $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.", "seconds ago" => "pred nekaj sekundami", -"1 minute ago" => "pred minuto", -"%d minutes ago" => "pred %d minutami", -"1 hour ago" => "Pred 1 uro", -"%d hours ago" => "Pred %d urami", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "danes", "yesterday" => "včeraj", -"%d days ago" => "pred %d dnevi", +"_%n day go_::_%n days ago_" => array(,), "last month" => "zadnji mesec", -"%d months ago" => "Pred %d meseci", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "lansko leto", "years ago" => "let nazaj", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 7a51b99c2be..a992d10ddb4 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", "seconds ago" => "sekonda më parë", -"1 minute ago" => "1 minutë më parë", -"%d minutes ago" => "%d minuta më parë", -"1 hour ago" => "1 orë më parë", -"%d hours ago" => "%d orë më parë", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "sot", "yesterday" => "dje", -"%d days ago" => "%d ditë më parë", +"_%n day go_::_%n days ago_" => array(,), "last month" => "muajin e shkuar", -"%d months ago" => "%d muaj më parë", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 96dec30124d..85b7cfea646 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -20,15 +20,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", "Please double check the installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", -"1 minute ago" => "пре 1 минут", -"%d minutes ago" => "пре %d минута", -"1 hour ago" => "Пре једног сата", -"%d hours ago" => "пре %d сата/и", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "данас", "yesterday" => "јуче", -"%d days ago" => "пре %d дана", +"_%n day go_::_%n days ago_" => array(,), "last month" => "прошлог месеца", -"%d months ago" => "пре %d месеца/и", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "прошле године", "years ago" => "година раније", "Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php index 1bfa1f0126f..3a205bc56ee 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -7,6 +7,10 @@ $TRANSLATIONS = array( "Admin" => "Adninistracija", "Authentication error" => "Greška pri autentifikaciji", "Files" => "Fajlovi", -"Text" => "Tekst" +"Text" => "Tekst", +"_%n minute ago_::_%n minutes ago_" => 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 36fd9b4d7b9..64efa94242f 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -41,15 +41,13 @@ $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.", "seconds ago" => "sekunder sedan", -"1 minute ago" => "1 minut sedan", -"%d minutes ago" => "%d minuter sedan", -"1 hour ago" => "1 timme sedan", -"%d hours ago" => "%d timmar sedan", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dagar sedan", +"_%n day go_::_%n days ago_" => array(,), "last month" => "förra månaden", -"%d months ago" => "%d månader sedan", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "förra året", "years ago" => "år sedan", "Caused by:" => "Orsakad av:", diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php new file mode 100644 index 00000000000..b2de92ed491 --- /dev/null +++ b/lib/l10n/sw_KE.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/ta_LK.php b/lib/l10n/ta_LK.php index 4a7dd922f85..72d47ebee48 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -17,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "உரை", "Images" => "படங்கள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"1 minute ago" => "1 நிமிடத்திற்கு முன் ", -"%d minutes ago" => "%d நிமிடங்களுக்கு முன்", -"1 hour ago" => "1 மணித்தியாலத்திற்கு முன்", -"%d hours ago" => "%d மணித்தியாலத்திற்கு முன்", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "இன்று", "yesterday" => "நேற்று", -"%d days ago" => "%d நாட்களுக்கு முன்", +"_%n day go_::_%n days ago_" => array(,), "last month" => "கடந்த மாதம்", -"%d months ago" => "%d மாதத்திற்கு முன்", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" diff --git a/lib/l10n/te.php b/lib/l10n/te.php index e7d9d921e5e..77cc16307e1 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -4,11 +4,13 @@ $TRANSLATIONS = array( "Settings" => "అమరికలు", "Users" => "వాడుకరులు", "seconds ago" => "క్షణాల క్రితం", -"1 minute ago" => "1 నిమిషం క్రితం", -"1 hour ago" => "1 గంట క్రితం", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "ఈరోజు", "yesterday" => "నిన్న", +"_%n day go_::_%n days ago_" => array(,), "last month" => "పోయిన నెల", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం" ); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 6d939c4588d..656e492394c 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -18,15 +18,13 @@ $TRANSLATIONS = array( "Text" => "ข้อความ", "Images" => "รูปภาพ", "seconds ago" => "วินาที ก่อนหน้านี้", -"1 minute ago" => "1 นาทีก่อนหน้านี้", -"%d minutes ago" => "%d นาทีที่ผ่านมา", -"1 hour ago" => "1 ชั่วโมงก่อนหน้านี้", -"%d hours ago" => "%d ชั่วโมงก่อนหน้านี้", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"%d days ago" => "%d วันที่ผ่านมา", +"_%n day go_::_%n days ago_" => array(,), "last month" => "เดือนที่แล้ว", -"%d months ago" => "%d เดือนมาแล้ว", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index c3fc70c798c..11e04c04157 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -38,15 +38,13 @@ $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 transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", -"1 minute ago" => "1 dakika önce", -"%d minutes ago" => "%d dakika önce", -"1 hour ago" => "1 saat önce", -"%d hours ago" => "%d saat önce", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "bugün", "yesterday" => "dün", -"%d days ago" => "%d gün önce", +"_%n day go_::_%n days ago_" => array(,), "last month" => "geçen ay", -"%d months ago" => "%d ay önce", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "geçen yıl", "years ago" => "yıl önce", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index 89d01c4a157..d5b714a7a07 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -8,13 +8,11 @@ $TRANSLATIONS = array( "Files" => "ھۆججەتلەر", "Text" => "قىسقا ئۇچۇر", "Images" => "سۈرەتلەر", -"1 minute ago" => "1 مىنۇت ئىلگىرى", -"%d minutes ago" => "%d مىنۇت ئىلگىرى", -"1 hour ago" => "1 سائەت ئىلگىرى", -"%d hours ago" => "%d سائەت ئىلگىرى", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", -"%d days ago" => "%d كۈن ئىلگىرى", -"%d months ago" => "%d ئاي ئىلگىرى" +"_%n day go_::_%n days ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(,) ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 93b1a005a23..0c0f1bc1a9b 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -37,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", "seconds ago" => "секунди тому", -"1 minute ago" => "1 хвилину тому", -"%d minutes ago" => "%d хвилин тому", -"1 hour ago" => "1 годину тому", -"%d hours ago" => "%d годин тому", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "сьогодні", "yesterday" => "вчора", -"%d days ago" => "%d днів тому", +"_%n day go_::_%n days ago_" => array(,), "last month" => "минулого місяця", -"%d months ago" => "%d місяців тому", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "минулого року", "years ago" => "роки тому", "Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index b98310070e4..73b7eed9f83 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -5,6 +5,10 @@ $TRANSLATIONS = array( "Settings" => "سیٹینگز", "Users" => "یوزرز", "Admin" => "ایڈمن", -"web services under your control" => "آپ کے اختیار میں ویب سروسیز" +"web services under your control" => "آپ کے اختیار میں ویب سروسیز", +"_%n minute ago_::_%n minutes ago_" => 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/vi.php b/lib/l10n/vi.php index 82ecc0fa47a..68cb6b5c341 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -18,15 +18,13 @@ $TRANSLATIONS = array( "Text" => "Văn bản", "Images" => "Hình ảnh", "seconds ago" => "vài giây trước", -"1 minute ago" => "1 phút trước", -"%d minutes ago" => "%d phút trước", -"1 hour ago" => "1 giờ trước", -"%d hours ago" => "%d giờ trước", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "hôm nay", "yesterday" => "hôm qua", -"%d days ago" => "%d ngày trước", +"_%n day go_::_%n days ago_" => array(,), "last month" => "tháng trước", -"%d months ago" => "%d tháng trước", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "năm trước", "years ago" => "năm trước", "Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 3433bdc35b5..63fffaac782 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", "Please double check the installation guides." => "请双击安装向导。", "seconds ago" => "秒前", -"1 minute ago" => "1 分钟前", -"%d minutes ago" => "%d 分钟前", -"1 hour ago" => "1小时前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array(,), "last month" => "上个月", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "去年", "years ago" => "年前" ); diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index c71a1030d8f..3311ae7de17 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -38,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", "Please double check the installation guides." => "请认真检查安装指南.", "seconds ago" => "秒前", -"1 minute ago" => "一分钟前", -"%d minutes ago" => "%d 分钟前", -"1 hour ago" => "1小时前", -"%d hours ago" => "%d小时前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array(,), "last month" => "上月", -"%d months ago" => "%d 月前", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "去年", "years ago" => "年前", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index d6a8e217b57..8609987fd6f 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -7,8 +7,12 @@ $TRANSLATIONS = array( "Admin" => "管理", "Files" => "文件", "Text" => "文字", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今日", "yesterday" => "昨日", -"last month" => "前一月" +"_%n day go_::_%n days ago_" => array(,), +"last month" => "前一月", +"_%n month ago_::_%n months ago_" => array(,) ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index d215995e307..65f38d30dd6 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -38,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", -"1 minute ago" => "1 分鐘前", -"%d minutes ago" => "%d 分鐘前", -"1 hour ago" => "1 小時之前", -"%d hours ago" => "%d 小時之前", +"_%n minute ago_::_%n minutes ago_" => array(,), +"_%n hour ago_::_%n hours ago_" => array(,), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array(,), "last month" => "上個月", -"%d months ago" => "%d 個月之前", +"_%n month ago_::_%n months ago_" => array(,), "last year" => "去年", "years ago" => "幾年前", "Could not find category \"%s\"" => "找不到分類:\"%s\"" -- GitLab From 3972198b61957ccefecd1a9840c9a46fb4e07ae9 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Thu, 15 Aug 2013 11:58:09 +0200 Subject: [PATCH 161/164] Cache OC_Util::checkServer() result in session The return value almost never changes but this function is called for every request. --- lib/util.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/util.php b/lib/util.php index b7dc2207e6c..25632ac1ea2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -168,6 +168,10 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkServer() { + // Assume that if checkServer() succeeded before in this session, then all is fine. + if(\OC::$session->exists('checkServer_suceeded') && \OC::$session->get('checkServer_suceeded')) + return array(); + $errors=array(); $defaults = new \OC_Defaults(); @@ -309,6 +313,9 @@ class OC_Util { 'hint'=>'Please ask your server administrator to restart the web server.'); } + // Cache the result of this function + \OC::$session->set('checkServer_suceeded', count($errors) == 0); + return $errors; } -- GitLab From c71408eaa9f4614cb8caa726ed3172ce77a359f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 15 Aug 2013 15:38:33 +0200 Subject: [PATCH 162/164] fixing call to join --- l10n/l10n.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 2790ca92015..851be8f7ccf 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -159,7 +159,7 @@ elsif( $task eq 'write' ){ push( @variants, $string->msgstr_n()->{$variant} ); } - push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"); + push( @strings, "\"$identifier\" => array(".join(",", @variants).")"); } else{ # singular translations -- GitLab From ada13a4d40feb4802ca393b8c0a8e09f35f571c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 15 Aug 2013 15:41:45 +0200 Subject: [PATCH 163/164] fixing all broken translation files --- apps/files/l10n/ar.php | 6 +++--- apps/files/l10n/bg_BG.php | 6 +++--- apps/files/l10n/bn_BD.php | 6 +++--- apps/files/l10n/ca.php | 6 +++--- apps/files/l10n/cs_CZ.php | 6 +++--- apps/files/l10n/cy_GB.php | 6 +++--- apps/files/l10n/da.php | 6 +++--- apps/files/l10n/de.php | 6 +++--- apps/files/l10n/de_DE.php | 6 +++--- apps/files/l10n/el.php | 6 +++--- apps/files/l10n/en@pirate.php | 6 +++--- apps/files/l10n/eo.php | 6 +++--- apps/files/l10n/es.php | 6 +++--- apps/files/l10n/es_AR.php | 6 +++--- apps/files/l10n/et_EE.php | 6 +++--- apps/files/l10n/eu.php | 6 +++--- apps/files/l10n/fa.php | 6 +++--- apps/files/l10n/fi_FI.php | 6 +++--- apps/files/l10n/fr.php | 6 +++--- apps/files/l10n/gl.php | 6 +++--- apps/files/l10n/he.php | 6 +++--- apps/files/l10n/hi.php | 6 +++--- apps/files/l10n/hr.php | 6 +++--- apps/files/l10n/hu_HU.php | 6 +++--- apps/files/l10n/hy.php | 6 +++--- apps/files/l10n/ia.php | 6 +++--- apps/files/l10n/id.php | 6 +++--- apps/files/l10n/is.php | 6 +++--- apps/files/l10n/it.php | 6 +++--- apps/files/l10n/ja_JP.php | 6 +++--- apps/files/l10n/ka.php | 6 +++--- apps/files/l10n/ka_GE.php | 6 +++--- apps/files/l10n/ko.php | 6 +++--- apps/files/l10n/ku_IQ.php | 6 +++--- apps/files/l10n/lb.php | 6 +++--- apps/files/l10n/lt_LT.php | 6 +++--- apps/files/l10n/lv.php | 6 +++--- apps/files/l10n/mk.php | 6 +++--- apps/files/l10n/ms_MY.php | 6 +++--- apps/files/l10n/my_MM.php | 6 +++--- apps/files/l10n/nb_NO.php | 6 +++--- apps/files/l10n/nl.php | 6 +++--- apps/files/l10n/nn_NO.php | 6 +++--- apps/files/l10n/oc.php | 6 +++--- apps/files/l10n/pl.php | 6 +++--- apps/files/l10n/pt_BR.php | 6 +++--- apps/files/l10n/pt_PT.php | 6 +++--- apps/files/l10n/ro.php | 6 +++--- apps/files/l10n/ru.php | 6 +++--- apps/files/l10n/si_LK.php | 6 +++--- apps/files/l10n/sk_SK.php | 6 +++--- apps/files/l10n/sl.php | 6 +++--- apps/files/l10n/sq.php | 6 +++--- apps/files/l10n/sr.php | 6 +++--- apps/files/l10n/sr@latin.php | 6 +++--- apps/files/l10n/sv.php | 6 +++--- apps/files/l10n/ta_LK.php | 6 +++--- apps/files/l10n/te.php | 6 +++--- apps/files/l10n/th_TH.php | 6 +++--- apps/files/l10n/tr.php | 6 +++--- apps/files/l10n/ug.php | 6 +++--- apps/files/l10n/uk.php | 6 +++--- apps/files/l10n/ur_PK.php | 6 +++--- apps/files/l10n/vi.php | 6 +++--- apps/files/l10n/zh_CN.GB2312.php | 6 +++--- apps/files/l10n/zh_CN.php | 6 +++--- apps/files/l10n/zh_HK.php | 6 +++--- apps/files/l10n/zh_TW.php | 6 +++--- apps/files_trashbin/l10n/ar.php | 4 ++-- apps/files_trashbin/l10n/bg_BG.php | 4 ++-- apps/files_trashbin/l10n/bn_BD.php | 4 ++-- apps/files_trashbin/l10n/ca.php | 4 ++-- apps/files_trashbin/l10n/cs_CZ.php | 4 ++-- apps/files_trashbin/l10n/cy_GB.php | 4 ++-- apps/files_trashbin/l10n/da.php | 4 ++-- apps/files_trashbin/l10n/de.php | 4 ++-- apps/files_trashbin/l10n/de_DE.php | 4 ++-- apps/files_trashbin/l10n/el.php | 4 ++-- apps/files_trashbin/l10n/eo.php | 4 ++-- apps/files_trashbin/l10n/es.php | 4 ++-- apps/files_trashbin/l10n/es_AR.php | 4 ++-- apps/files_trashbin/l10n/et_EE.php | 4 ++-- apps/files_trashbin/l10n/eu.php | 4 ++-- apps/files_trashbin/l10n/fa.php | 4 ++-- apps/files_trashbin/l10n/fi_FI.php | 4 ++-- apps/files_trashbin/l10n/fr.php | 4 ++-- apps/files_trashbin/l10n/gl.php | 4 ++-- apps/files_trashbin/l10n/he.php | 4 ++-- apps/files_trashbin/l10n/hr.php | 4 ++-- apps/files_trashbin/l10n/hu_HU.php | 4 ++-- apps/files_trashbin/l10n/hy.php | 4 ++-- apps/files_trashbin/l10n/ia.php | 4 ++-- apps/files_trashbin/l10n/id.php | 4 ++-- apps/files_trashbin/l10n/is.php | 4 ++-- apps/files_trashbin/l10n/it.php | 4 ++-- apps/files_trashbin/l10n/ja_JP.php | 4 ++-- apps/files_trashbin/l10n/ka_GE.php | 4 ++-- apps/files_trashbin/l10n/ko.php | 4 ++-- apps/files_trashbin/l10n/ku_IQ.php | 4 ++-- apps/files_trashbin/l10n/lb.php | 4 ++-- apps/files_trashbin/l10n/lt_LT.php | 4 ++-- apps/files_trashbin/l10n/lv.php | 4 ++-- apps/files_trashbin/l10n/mk.php | 4 ++-- apps/files_trashbin/l10n/ms_MY.php | 4 ++-- apps/files_trashbin/l10n/nb_NO.php | 4 ++-- apps/files_trashbin/l10n/nl.php | 4 ++-- apps/files_trashbin/l10n/nn_NO.php | 4 ++-- apps/files_trashbin/l10n/oc.php | 4 ++-- apps/files_trashbin/l10n/pl.php | 4 ++-- apps/files_trashbin/l10n/pt_BR.php | 4 ++-- apps/files_trashbin/l10n/pt_PT.php | 4 ++-- apps/files_trashbin/l10n/ro.php | 4 ++-- apps/files_trashbin/l10n/ru.php | 4 ++-- apps/files_trashbin/l10n/si_LK.php | 4 ++-- apps/files_trashbin/l10n/sk_SK.php | 4 ++-- apps/files_trashbin/l10n/sl.php | 4 ++-- apps/files_trashbin/l10n/sq.php | 4 ++-- apps/files_trashbin/l10n/sr.php | 4 ++-- apps/files_trashbin/l10n/sr@latin.php | 4 ++-- apps/files_trashbin/l10n/sv.php | 4 ++-- apps/files_trashbin/l10n/ta_LK.php | 4 ++-- apps/files_trashbin/l10n/te.php | 4 ++-- apps/files_trashbin/l10n/th_TH.php | 4 ++-- apps/files_trashbin/l10n/tr.php | 4 ++-- apps/files_trashbin/l10n/ug.php | 4 ++-- apps/files_trashbin/l10n/uk.php | 4 ++-- apps/files_trashbin/l10n/ur_PK.php | 4 ++-- apps/files_trashbin/l10n/vi.php | 4 ++-- apps/files_trashbin/l10n/zh_CN.GB2312.php | 4 ++-- apps/files_trashbin/l10n/zh_CN.php | 4 ++-- apps/files_trashbin/l10n/zh_HK.php | 4 ++-- apps/files_trashbin/l10n/zh_TW.php | 4 ++-- core/l10n/af_ZA.php | 8 ++++---- core/l10n/ar.php | 8 ++++---- core/l10n/be.php | 8 ++++---- core/l10n/bg_BG.php | 8 ++++---- core/l10n/bn_BD.php | 8 ++++---- core/l10n/bs.php | 8 ++++---- core/l10n/ca.php | 8 ++++---- core/l10n/cs_CZ.php | 8 ++++---- core/l10n/cy_GB.php | 8 ++++---- core/l10n/da.php | 8 ++++---- core/l10n/de.php | 8 ++++---- core/l10n/de_AT.php | 8 ++++---- core/l10n/de_CH.php | 8 ++++---- core/l10n/de_DE.php | 8 ++++---- core/l10n/el.php | 8 ++++---- core/l10n/en@pirate.php | 8 ++++---- core/l10n/eo.php | 8 ++++---- core/l10n/es.php | 8 ++++---- core/l10n/es_AR.php | 8 ++++---- core/l10n/et_EE.php | 8 ++++---- core/l10n/eu.php | 8 ++++---- core/l10n/fa.php | 8 ++++---- core/l10n/fi_FI.php | 8 ++++---- core/l10n/fr.php | 8 ++++---- core/l10n/gl.php | 8 ++++---- core/l10n/he.php | 8 ++++---- core/l10n/hi.php | 8 ++++---- core/l10n/hr.php | 8 ++++---- core/l10n/hu_HU.php | 8 ++++---- core/l10n/hy.php | 8 ++++---- core/l10n/ia.php | 8 ++++---- core/l10n/id.php | 8 ++++---- core/l10n/is.php | 8 ++++---- core/l10n/it.php | 8 ++++---- core/l10n/ja_JP.php | 8 ++++---- core/l10n/ka.php | 8 ++++---- core/l10n/ka_GE.php | 8 ++++---- core/l10n/kn.php | 8 ++++---- core/l10n/ko.php | 8 ++++---- core/l10n/ku_IQ.php | 8 ++++---- core/l10n/lb.php | 8 ++++---- core/l10n/lt_LT.php | 8 ++++---- core/l10n/lv.php | 8 ++++---- core/l10n/mk.php | 8 ++++---- core/l10n/ml_IN.php | 8 ++++---- core/l10n/ms_MY.php | 8 ++++---- core/l10n/my_MM.php | 8 ++++---- core/l10n/nb_NO.php | 8 ++++---- core/l10n/ne.php | 8 ++++---- core/l10n/nl.php | 8 ++++---- core/l10n/nn_NO.php | 8 ++++---- core/l10n/oc.php | 8 ++++---- core/l10n/pl.php | 8 ++++---- core/l10n/pt_BR.php | 8 ++++---- core/l10n/pt_PT.php | 8 ++++---- core/l10n/ro.php | 8 ++++---- core/l10n/ru.php | 8 ++++---- core/l10n/si_LK.php | 8 ++++---- core/l10n/sk.php | 8 ++++---- core/l10n/sk_SK.php | 8 ++++---- core/l10n/sl.php | 8 ++++---- core/l10n/sq.php | 8 ++++---- core/l10n/sr.php | 8 ++++---- core/l10n/sr@latin.php | 8 ++++---- core/l10n/sv.php | 8 ++++---- core/l10n/sw_KE.php | 8 ++++---- core/l10n/ta_LK.php | 8 ++++---- core/l10n/te.php | 8 ++++---- core/l10n/th_TH.php | 8 ++++---- core/l10n/tr.php | 8 ++++---- core/l10n/ug.php | 8 ++++---- core/l10n/uk.php | 8 ++++---- core/l10n/ur_PK.php | 8 ++++---- core/l10n/vi.php | 8 ++++---- core/l10n/zh_CN.GB2312.php | 8 ++++---- core/l10n/zh_CN.php | 8 ++++---- core/l10n/zh_HK.php | 8 ++++---- core/l10n/zh_TW.php | 8 ++++---- lib/l10n/af_ZA.php | 8 ++++---- lib/l10n/ar.php | 8 ++++---- lib/l10n/be.php | 8 ++++---- lib/l10n/bg_BG.php | 8 ++++---- lib/l10n/bn_BD.php | 8 ++++---- lib/l10n/bs.php | 8 ++++---- lib/l10n/ca.php | 8 ++++---- lib/l10n/cs_CZ.php | 8 ++++---- lib/l10n/cy_GB.php | 8 ++++---- lib/l10n/da.php | 8 ++++---- lib/l10n/de.php | 8 ++++---- lib/l10n/de_AT.php | 8 ++++---- lib/l10n/de_CH.php | 8 ++++---- lib/l10n/de_DE.php | 8 ++++---- lib/l10n/el.php | 8 ++++---- lib/l10n/en@pirate.php | 8 ++++---- lib/l10n/eo.php | 8 ++++---- lib/l10n/es.php | 8 ++++---- lib/l10n/es_AR.php | 8 ++++---- lib/l10n/et_EE.php | 8 ++++---- lib/l10n/eu.php | 8 ++++---- lib/l10n/fa.php | 8 ++++---- lib/l10n/fi_FI.php | 8 ++++---- lib/l10n/fr.php | 8 ++++---- lib/l10n/gl.php | 8 ++++---- lib/l10n/he.php | 8 ++++---- lib/l10n/hi.php | 8 ++++---- lib/l10n/hr.php | 8 ++++---- lib/l10n/hu_HU.php | 8 ++++---- lib/l10n/hy.php | 8 ++++---- lib/l10n/ia.php | 8 ++++---- lib/l10n/id.php | 8 ++++---- lib/l10n/is.php | 8 ++++---- lib/l10n/it.php | 8 ++++---- lib/l10n/ja_JP.php | 8 ++++---- lib/l10n/ka.php | 8 ++++---- lib/l10n/ka_GE.php | 8 ++++---- lib/l10n/kn.php | 8 ++++---- lib/l10n/ko.php | 8 ++++---- lib/l10n/ku_IQ.php | 8 ++++---- lib/l10n/lb.php | 8 ++++---- lib/l10n/lt_LT.php | 8 ++++---- lib/l10n/lv.php | 8 ++++---- lib/l10n/mk.php | 8 ++++---- lib/l10n/ml_IN.php | 8 ++++---- lib/l10n/ms_MY.php | 8 ++++---- lib/l10n/my_MM.php | 8 ++++---- lib/l10n/nb_NO.php | 8 ++++---- lib/l10n/ne.php | 8 ++++---- lib/l10n/nl.php | 8 ++++---- lib/l10n/nn_NO.php | 8 ++++---- lib/l10n/oc.php | 8 ++++---- lib/l10n/pl.php | 8 ++++---- lib/l10n/pt_BR.php | 8 ++++---- lib/l10n/pt_PT.php | 8 ++++---- lib/l10n/ro.php | 8 ++++---- lib/l10n/ru.php | 8 ++++---- lib/l10n/si_LK.php | 8 ++++---- lib/l10n/sk.php | 8 ++++---- lib/l10n/sk_SK.php | 8 ++++---- lib/l10n/sl.php | 8 ++++---- lib/l10n/sq.php | 8 ++++---- lib/l10n/sr.php | 8 ++++---- lib/l10n/sr@latin.php | 8 ++++---- lib/l10n/sv.php | 8 ++++---- lib/l10n/sw_KE.php | 8 ++++---- lib/l10n/ta_LK.php | 8 ++++---- lib/l10n/te.php | 8 ++++---- lib/l10n/th_TH.php | 8 ++++---- lib/l10n/tr.php | 8 ++++---- lib/l10n/ug.php | 8 ++++---- lib/l10n/uk.php | 8 ++++---- lib/l10n/ur_PK.php | 8 ++++---- lib/l10n/vi.php | 8 ++++---- lib/l10n/zh_CN.GB2312.php | 8 ++++---- lib/l10n/zh_CN.php | 8 ++++---- lib/l10n/zh_HK.php | 8 ++++---- lib/l10n/zh_TW.php | 8 ++++---- 288 files changed, 956 insertions(+), 956 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 8a86811b86f..a83420584c4 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -30,7 +30,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", "perform delete operation" => "جاري تنفيذ عملية الحذف", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","","","","",""), "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", @@ -41,8 +41,8 @@ $TRANSLATIONS = array( "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","","","",""), +"_%n file_::_%n files_" => array("","","","","",""), "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index a6849c30915..551a85ef9f4 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -18,12 +18,12 @@ $TRANSLATIONS = array( "replace" => "препокриване", "cancel" => "отказ", "undo" => "възтановяване", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index ca77eea1c6e..655b6f22662 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -28,7 +28,7 @@ $TRANSLATIONS = array( "cancel" => "বাতিল", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", @@ -36,8 +36,8 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index d928049f9bc..177790ab997 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "undo" => "desfés", "perform delete operation" => "executa d'operació d'esborrar", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fitxers pujant", "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 4cd595bd7e2..b88be983df3 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "undo" => "vrátit zpět", "perform delete operation" => "provést smazání", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "soubory se odesílají", "'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index c0639d9746f..ca8d3c52c0f 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", "undo" => "dadwneud", "perform delete operation" => "cyflawni gweithred dileu", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), "files uploading" => "ffeiliau'n llwytho i fyny", "'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", "File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 639d910e107..43dde685f31 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", "perform delete operation" => "udfør slet operation", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "uploader filer", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index a1be267f4d9..debfac152a7 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 115ab136420..8efb9642828 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("Es werden %n Dateien hochgeladen","Es werden %n Dateien hochgeladen"), "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 2778276a8c0..9eaad889d10 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", "perform delete operation" => "εκτέλεση της διαδικασίας διαγραφής", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "αρχεία ανεβαίνουν", "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php index c9c54ed74c3..83351f265f0 100644 --- a/apps/files/l10n/en@pirate.php +++ b/apps/files/l10n/en@pirate.php @@ -1,8 +1,8 @@ array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Download" => "Download" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 0f433a81e25..d6916a9a8db 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", "perform delete operation" => "plenumi forigan operacion", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "dosieroj estas alŝutataj", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", @@ -44,8 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 031ed460c49..36363661232 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Realizar operación de borrado", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "subiendo archivos", "'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Manejo de archivos", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 33403644dfb..8c5decaeb10 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Llevar a cabo borrado", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "No se pudo renombrar %s", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index b2978304ac5..13dd4a78d34 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "undo" => "tagasi", "perform delete operation" => "teosta kustutamine", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "faili üleslaadimisel", "'.' is an invalid file name." => "'.' on vigane failinimi.", "File name cannot be empty." => "Faili nimi ei saa olla tühi.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 7f29f09fc7f..02b2730ddcd 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "undo" => "desegin", "perform delete operation" => "Ezabatu", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fitxategiak igotzen", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 11f8cff3999..e749f7bf0e9 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", "perform delete operation" => "انجام عمل حذف", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "بارگذاری فایل ها", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index f0790b469b3..cc20d8bb3ae 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -30,7 +30,7 @@ $TRANSLATIONS = array( "cancel" => "peru", "undo" => "kumoa", "perform delete operation" => "suorita poistotoiminto", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", @@ -40,8 +40,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 9d5b7632a80..1f6dff8ce99 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "undo" => "annuler", "perform delete operation" => "effectuer l'opération de suppression", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fichiers en cours d'envoi", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ne peut être renommé", "Upload" => "Envoyer", "File handling" => "Gestion des fichiers", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 0dc681a571a..92c9a9d5c25 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "undo" => "desfacer", "perform delete operation" => "realizar a operación de eliminación", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "ficheiros enviándose", "'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 1868ffe1d65..2f66e3ece31 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,14 +30,14 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "undo" => "ביטול", "perform delete operation" => "ביצוע פעולת מחיקה", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "קבצים בהעלאה", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 0066d8badda..7fb5a5b09d3 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -2,9 +2,9 @@ $TRANSLATIONS = array( "Error" => "त्रुटि", "Share" => "साझा करें", -"_Uploading %n file_::_Uploading %n files_" => array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index a17161b0092..b1f1f6dcada 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "suggest name" => "predloži ime", "cancel" => "odustani", "undo" => "vrati", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "datoteke se učitavaju", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 30bffdf1082..1bb46703903 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", "perform delete operation" => "a törlés végrehajtása", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fájl töltődik föl", "'.' is an invalid file name." => "'.' fájlnév érvénytelen.", "File name cannot be empty." => "A fájlnév nem lehet semmi.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s átnevezése nem sikerült", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 4d4f4c0c775..9e9658de0e5 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,9 +1,9 @@ "Ջնջել", -"_Uploading %n file_::_Uploading %n files_" => array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "Պահպանել", "Download" => "Բեռնել" ); diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index af42d2f05e9..b2addebc2f6 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -7,12 +7,12 @@ $TRANSLATIONS = array( "Error" => "Error", "Share" => "Compartir", "Delete" => "Deler", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 79dd9e727a3..e07aa2e069e 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", "undo" => "urungkan", "perform delete operation" => "Lakukan operasi penghapusan", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "berkas diunggah", "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", "File name cannot be empty." => "Nama berkas tidak boleh kosong.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 4e089be877c..dc90483dea9 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -28,7 +28,7 @@ $TRANSLATIONS = array( "cancel" => "hætta við", "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "undo" => "afturkalla", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", @@ -36,8 +36,8 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 34d4a752e37..37b7cecb123 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", "perform delete operation" => "esegui l'operazione di eliminazione", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "caricamento file", "'.' is an invalid file name." => "'.' non è un nome file valido.", "File name cannot be empty." => "Il nome del file non può essere vuoto.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s non può essere rinominato", "Upload" => "Carica", "File handling" => "Gestione file", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 6124d22b2f4..d7959988062 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", "perform delete operation" => "削除を実行", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ファイルをアップロード中", "'.' is an invalid file name." => "'.' は無効なファイル名です。", "File name cannot be empty." => "ファイル名を空にすることはできません。", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "変更", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "%sの名前を変更できませんでした", "Upload" => "アップロード", "File handling" => "ファイル操作", diff --git a/apps/files/l10n/ka.php b/apps/files/l10n/ka.php index 32c41840e5a..527a2c49b1c 100644 --- a/apps/files/l10n/ka.php +++ b/apps/files/l10n/ka.php @@ -1,9 +1,9 @@ "ფაილები", -"_Uploading %n file_::_Uploading %n files_" => array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Download" => "გადმოწერა" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 63bbfd70326..40068f36d1f 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", "perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ფაილები იტვირთება", "'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", "File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index ce3445c3660..323ba9556bd 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "undo" => "되돌리기", "perform delete operation" => "삭제 작업중", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "파일 업로드중", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 76a66b06cc6..81177f9bea0 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -2,10 +2,10 @@ $TRANSLATIONS = array( "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Error" => "هه‌ڵه", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index eb27a535e9c..c9b7c3462e5 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -16,12 +16,12 @@ $TRANSLATIONS = array( "replace" => "ersetzen", "cancel" => "ofbriechen", "undo" => "réckgängeg man", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 9580e64fda9..54fe271f2eb 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "undo" => "anuliuoti", "perform delete operation" => "ištrinti", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "įkeliami failai", "'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", "File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", @@ -44,8 +44,8 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 5012c9776ee..0eb0b8ceb3d 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", "undo" => "atsaukt", "perform delete operation" => "veikt dzēšanas darbību", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", "File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", @@ -42,8 +42,8 @@ $TRANSLATIONS = array( "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index a1cadeedcc2..faeaca9ae96 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -24,13 +24,13 @@ $TRANSLATIONS = array( "cancel" => "откажи", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "undo" => "врати", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 9ea8d2fd43d..b67a4d886de 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -16,12 +16,12 @@ $TRANSLATIONS = array( "Pending" => "Dalam proses", "replace" => "ganti", "cancel" => "Batal", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", diff --git a/apps/files/l10n/my_MM.php b/apps/files/l10n/my_MM.php index dbade02e9cf..4dc63ffee2d 100644 --- a/apps/files/l10n/my_MM.php +++ b/apps/files/l10n/my_MM.php @@ -1,9 +1,9 @@ "ဖိုင်များ", -"_Uploading %n file_::_Uploading %n files_" => array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index d198f3762dc..dfd197d9205 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -33,7 +33,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "undo" => "angre", "perform delete operation" => "utfør sletting", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer lastes opp", "'.' is an invalid file name." => "'.' er et ugyldig filnavn.", "File name cannot be empty." => "Filnavn kan ikke være tomt.", @@ -45,8 +45,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Last opp", "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 63d75a1a36f..6385dcee75b 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "undo" => "ongedaan maken", "perform delete operation" => "uitvoeren verwijderactie", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "bestanden aan het uploaden", "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload" => "Uploaden", "File handling" => "Bestand", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 1dd706913e6..fcaaa7d3331 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -32,7 +32,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", "undo" => "angre", "perform delete operation" => "utfør sletting", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer lastar opp", "'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", @@ -44,8 +44,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index fd3d20dac89..89aeeee9a85 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "suggest name" => "nom prepausat", "cancel" => "anulla", "undo" => "defar", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fichièrs al amontcargar", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index febcd84a3e1..15e746176f6 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", "perform delete operation" => "wykonaj operację usunięcia", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "pliki wczytane", "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 948cd451da2..0728436d256 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "undo" => "desfazer", "perform delete operation" => "realizar operação de exclusão", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "enviando arquivos", "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s não pode ser renomeado", "Upload" => "Upload", "File handling" => "Tratamento de Arquivo", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 0ff9381a1a4..4684a2d6052 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "undo" => "desfazer", "perform delete operation" => "Executar a tarefa de apagar", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "A enviar os ficheiros", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b31c1247791..d62525f205e 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "undo" => "Anulează ultima acțiune", "perform delete operation" => "efectueaza operatiunea de stergere", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "fișiere se încarcă", "'.' is an invalid file name." => "'.' este un nume invalid de fișier.", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nu a putut fi redenumit", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index b31bdd97e5a..28893b4a632 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", "perform delete operation" => "выполнить операцию удаления", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "файлы загружаются", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменён", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", "File handling" => "Управление файлами", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index ac5ad960a49..8341fdec665 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -19,12 +19,12 @@ $TRANSLATIONS = array( "suggest name" => "නමක් යෝජනා කරන්න", "cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 88e5818cfbb..51491bbc13f 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "undo" => "vrátiť", "perform delete operation" => "vykonať zmazanie", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "nahrávanie súborov", "'.' is an invalid file name." => "'.' je neplatné meno súboru.", "File name cannot be empty." => "Meno súboru nemôže byť prázdne", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nemohol byť premenovaný", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 89397e2e420..f71991d080a 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", "perform delete operation" => "izvedi opravilo brisanja", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), "files uploading" => "poteka pošiljanje datotek", "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "%s could not be renamed" => "%s ni bilo mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 5ad8de8aa5a..85bf22507e4 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}", "undo" => "anulo", "perform delete operation" => "ekzekuto operacionin e eliminimit", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "po ngarkoj skedarët", "'.' is an invalid file name." => "'.' është emër i pavlefshëm.", "File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Emri", "Size" => "Dimensioni", "Modified" => "Modifikuar", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Ngarko", "File handling" => "Trajtimi i skedarit", "Maximum upload size" => "Dimensioni maksimal i ngarkimit", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 8907b7ab2c9..5de6e32300e 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", "perform delete operation" => "обриши", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "датотеке се отпремају", "'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", "File name cannot be empty." => "Име датотеке не може бити празно.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 441253c5c81..856f3d46559 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -7,12 +7,12 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Delete" => "Obriši", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index a96e1e8e4ab..141bf02c3c9 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "undo" => "ångra", "perform delete operation" => "utför raderingen", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer laddas upp", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "File name cannot be empty." => "Filnamn kan inte vara tomt.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s kunde inte namnändras", "Upload" => "Ladda upp", "File handling" => "Filhantering", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 64680ede69f..cc0180fe463 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -23,13 +23,13 @@ $TRANSLATIONS = array( "cancel" => "இரத்து செய்க", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "undo" => "முன் செயல் நீக்கம் ", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index df03fc9824f..eb431b6c100 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "Delete permanently" => "శాశ్వతంగా తొలగించు", "Delete" => "తొలగించు", "cancel" => "రద్దుచేయి", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "పేరు", "Size" => "పరిమాణం", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "భద్రపరచు", "Folder" => "సంచయం" ); diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index bfdc1c072f4..bd91056b09b 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,7 +30,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "undo" => "เลิกทำ", "perform delete operation" => "ดำเนินการตามคำสั่งลบ", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "การอัพโหลดไฟล์", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", @@ -42,8 +42,8 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 9c597142210..4762ad0b829 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "undo" => "geri al", "perform delete operation" => "Silme işlemini gerçekleştir", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "Dosyalar yükleniyor", "'.' is an invalid file name." => "'.' geçersiz dosya adı.", "File name cannot be empty." => "Dosya adı boş olamaz.", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", "File handling" => "Dosya taşıma", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 0b649b9eeb2..068c953ee1a 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -21,13 +21,13 @@ $TRANSLATIONS = array( "suggest name" => "تەۋسىيە ئات", "cancel" => "ۋاز كەچ", "undo" => "يېنىۋال", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ", "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 122f0c696a8..4cc49c65085 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "undo" => "відмінити", "perform delete operation" => "виконати операцію видалення", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s не може бути перейменований", "Upload" => "Вивантажити", "File handling" => "Робота з файлами", diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php index 8cdde14c26d..15c24700df0 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,9 +1,9 @@ "ایرر", -"_Uploading %n file_::_Uploading %n files_" => array(,), -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Unshare" => "شئیرنگ ختم کریں" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index e778c0c3747..3684df65958 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -31,7 +31,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "undo" => "lùi lại", "perform delete operation" => "thực hiện việc xóa", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "tệp tin đang được tải lên", "'.' is an invalid file name." => "'.' là một tên file không hợp lệ", "File name cannot be empty." => "Tên file không được rỗng", @@ -43,8 +43,8 @@ $TRANSLATIONS = array( "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 87177458a73..090b73cc54a 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", "perform delete operation" => "执行删除", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "个文件正在上传", "'.' is an invalid file name." => "'.' 文件名不正确", "File name cannot be empty." => "文件名不能为空", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "不能重命名 %s", "Upload" => "上传", "File handling" => "文件处理中", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 248ca127044..e9fb20c69cb 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", "perform delete operation" => "进行删除操作", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "文件上传中", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "%s 不能被重命名", "Upload" => "上传", "File handling" => "文件处理", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 9e806a2fbff..52f23f4a5d7 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -4,10 +4,10 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Share" => "分享", "Delete" => "刪除", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "上傳", "Save" => "儲存", "Download" => "下載", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 620405b7b9f..2ee6116b132 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", "perform delete operation" => "進行刪除動作", -"_Uploading %n file_::_Uploading %n files_" => array(,), +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "檔案正在上傳中", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", @@ -46,8 +46,8 @@ $TRANSLATIONS = array( "Name" => "名稱", "Size" => "大小", "Modified" => "修改", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 2fc2aed26ed..710a9d14196 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف بشكل دائم", "Name" => "اسم", "Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","","","",""), +"_%n file_::_%n files_" => array("","","","","",""), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Restore" => "استعيد", "Delete" => "إلغاء", diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 7f4c7493b36..3c12e6906ed 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Изтриване завинаги", "Name" => "Име", "Deleted" => "Изтрито", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", "Restore" => "Възтановяване", "Delete" => "Изтриване", diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index e512b2360b5..c3741dbd1db 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 8ab3d785f73..6e226b7fc85 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Esborra permanentment", "Name" => "Nom", "Deleted" => "Eliminat", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", "Restore" => "Recupera", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index cd1acc5eb0d..383d2a217f7 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trvale odstranit", "Name" => "Název", "Deleted" => "Smazáno", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", "Restore" => "Obnovit", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index df3b67b8df8..123a445c2c1 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Dileu'n barhaol", "Name" => "Enw", "Deleted" => "Wedi dileu", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", "Restore" => "Adfer", "Delete" => "Dileu", diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index adee29a6df2..d6753fd3c0b 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slet permanent", "Name" => "Navn", "Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index ced25d80af8..6a30bcfbbba 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "gelöscht", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 4813b70fdbf..5c2c515f7c1 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 506992d9119..759e5299e42 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Μόνιμη διαγραφή", "Name" => "Όνομα", "Deleted" => "Διαγράφηκε", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Restore" => "Επαναφορά", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index fb60d7a0aa8..d1e30cba588 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eraro", "Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index 564f80f634c..956d89ae688 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", "Restore" => "Recuperar", diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 0a8be563f91..6f47255b506 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Borrar de manera permanente", "Name" => "Nombre", "Deleted" => "Borrado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", "Restore" => "Recuperar", "Delete" => "Borrar", diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 44a7ea28550..2cfcafa804e 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Kustuta jäädavalt", "Name" => "Nimi", "Deleted" => "Kustutatud", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", "Restore" => "Taasta", diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 7156a66bfbf..b114dc3386a 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ezabatu betirako", "Name" => "Izena", "Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", "Restore" => "Berrezarri", "Delete" => "Ezabatu", diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 9d5613ce8e0..654f20a5f1c 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف قطعی", "Name" => "نام", "Deleted" => "حذف شده", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", "Restore" => "بازیابی", "Delete" => "حذف", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index 9dec2975f31..0c18b774a97 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Poista pysyvästi", "Name" => "Nimi", "Deleted" => "Poistettu", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", "Restore" => "Palauta", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 0581cf6efed..8854190e2ce 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Supprimer de façon définitive", "Name" => "Nom", "Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", "Restore" => "Restaurer", "Delete" => "Supprimer", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index e4e72a9e469..034ba13c3fe 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", "Restore" => "Restablecer", diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 98c846c502c..6aa6264a315 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "מחיקה לצמיתות", "Name" => "שם", "Deleted" => "נמחק", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", "Restore" => "שחזור", "Delete" => "מחיקה", diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index a635278cb67..d227b4979aa 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $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;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 299d252c1e7..aac6cf78000 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Végleges törlés", "Name" => "Név", "Deleted" => "Törölve", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", "Restore" => "Visszaállítás", diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 127ae408214..6ff58b56202 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,7 +1,7 @@ array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index 6df843b2882..c583344a81e 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 82c01e4da7b..6aad1302f43 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Hapus secara permanen", "Name" => "Nama", "Deleted" => "Dihapus", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", "Restore" => "Pulihkan", "Delete" => "Hapus", diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index adf462e3872..55ae4336461 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index d4e6752ae7e..0dc2b938f8a 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimina definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 2542684a060..62a541ea2b8 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "完全に削除する", "Name" => "名前", "Deleted" => "削除済み", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", "Restore" => "復元", diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 3b29642c629..236d8951e9d 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "სრულად წაშლა", "Name" => "სახელი", "Deleted" => "წაშლილი", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", "Restore" => "აღდგენა", "Delete" => "წაშლა", diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index fc0a4ca2de2..f2e604d7591 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Error" => "오류", "Delete permanently" => "영원히 삭제", "Name" => "이름", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Restore" => "복원", "Delete" => "삭제" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 6c73695dc15..3f110f06002 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -2,7 +2,7 @@ $TRANSLATIONS = array( "Error" => "هه‌ڵه", "Name" => "ناو", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,) +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index 08be3e20f1f..cbfd515a8b3 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 197c9b250f6..c4a12ff2175 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ištrinti negrįžtamai", "Name" => "Pavadinimas", "Deleted" => "Ištrinti", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", "Restore" => "Atstatyti", "Delete" => "Ištrinti", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index a7c0bc326e2..ccbf117fdad 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Dzēst pavisam", "Name" => "Nosaukums", "Deleted" => "Dzēsts", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", "Restore" => "Atjaunot", "Delete" => "Dzēst", diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 190445fe91a..965518dbc86 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 9c70b4ae0a9..1b5ca07c70c 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index ca81b33621d..8a69b3d87aa 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett permanent", "Name" => "Navn", "Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 2de36ece52a..2c6dcb2fcbf 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Verwijder definitief", "Name" => "Naam", "Deleted" => "Verwijderd", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", "Restore" => "Herstellen", diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index eb50b04ec4b..9e351668e33 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett for godt", "Name" => "Namn", "Deleted" => "Sletta", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index 656b688987d..a62902c3b7e 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index 000d6b69381..e8295e2ff03 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trwale usuń", "Name" => "Nazwa", "Deleted" => "Usunięte", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", "Restore" => "Przywróć", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index b1137672e50..1e3c67ba027 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Excluir permanentemente", "Name" => "Nome", "Deleted" => "Excluído", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 7fae2628015..0c88d132b5c 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Apagado", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index cb47682f323..0b1d2cd9e17 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index c76659b232f..909e4d7131f 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Удалено навсегда", "Name" => "Имя", "Deleted" => "Удалён", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Restore" => "Восстановить", diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 54700566f35..6dad84437cf 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 727d900b9cd..0f78da5fc3d 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Zmazať trvalo", "Name" => "Názov", "Deleted" => "Zmazané", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", "Restore" => "Obnoviť", diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index 4a44e144def..eb2d42a18ff 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Izbriši dokončno", "Name" => "Ime", "Deleted" => "Izbrisano", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", "Restore" => "Obnovi", "Delete" => "Izbriši", diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index c5fb62e84fb..1b7b5b828c8 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimino përfundimisht", "Name" => "Emri", "Deleted" => "Eliminuar", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", "Restore" => "Rivendos", "Delete" => "Elimino", diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 97c9f78dc14..7311e759f98 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -5,8 +5,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", "Restore" => "Врати", "Delete" => "Обриши" diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index bd1a26abf66..483d1e3ca2b 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -1,8 +1,8 @@ "Ime", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $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);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index c8f79dbdb65..b0752cbbe8b 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Radera permanent", "Name" => "Namn", "Deleted" => "Raderad", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", "Restore" => "Återskapa", diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index 12e9e66af54..ed93b459c7d 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 6fdbc7320b2..0d803a8e648 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Error" => "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index a1e397bbe50..31caa11aac3 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -4,8 +4,8 @@ $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Deleted" => "ลบแล้ว", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", "Restore" => "คืนค่า", "Delete" => "ลบ", diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index dec1b35a79a..08fb0a02031 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Kalıcı olarak sil", "Name" => "İsim", "Deleted" => "Silindi", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", "Restore" => "Geri yükle", "Delete" => "Sil", diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index 6ac41cea50f..ad983aee18b 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -4,8 +4,8 @@ $TRANSLATIONS = array( "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index 2b07b7ecfe2..aa4b6595032 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Видалити назавжди", "Name" => "Ім'я", "Deleted" => "Видалено", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Restore" => "Відновити", diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index 63e0e39bba2..f6c6a3da3c8 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,7 +1,7 @@ "ایرر", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,) +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index e83a273a909..072d799fa68 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Xóa vĩnh vễn", "Name" => "Tên", "Deleted" => "Đã xóa", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", "Restore" => "Khôi phục", "Delete" => "Xóa", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index ea97c168f15..4bd7cc2cee6 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Error" => "出错", "Delete permanently" => "永久删除", "Name" => "名称", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Delete" => "删除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index 9e262d5cb88..6609f57d9cf 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久删除", "Name" => "名称", "Deleted" => "已删除", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", "Restore" => "恢复", "Delete" => "删除", diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index a8741a41829..3f0d663baeb 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index d6c54614c2c..ab6b75c5784 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array(,), -"_%n file_::_%n files_" => array(,), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index 17058ba0bfb..ed5989e43bd 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,10 +1,10 @@ "Instellings", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Password" => "Wagwoord", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 194aac3c2be..b61b5cd060a 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "كانون الاول", "Settings" => "إعدادات", "seconds ago" => "منذ ثواني", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","","","",""), "today" => "اليوم", "yesterday" => "يوم أمس", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","","","",""), "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", diff --git a/core/l10n/be.php b/core/l10n/be.php index fcc2608fe50..de1b24e4a7a 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -1,9 +1,9 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), +"_%n day ago_::_%n days ago_" => array("","","",""), +"_%n month ago_::_%n months ago_" => array("","","",""), "Advanced" => "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку.", "prev" => "Папярэдняя", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index c8127633986..d79fe87c8f0 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -22,13 +22,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Настройки", "seconds ago" => "преди секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "днес", "yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", "years ago" => "последните години", "Cancel" => "Отказ", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 72a69fe8e61..b9227e1e61e 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "ডিসেম্বর", "Settings" => "নিয়ামকসমূহ", "seconds ago" => "সেকেন্ড পূর্বে", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "আজ", "yesterday" => "গতকাল", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "গত মাস", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 624a8b7e16a..885518f9136 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -1,9 +1,9 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","",""), "Share" => "Podijeli", "Add" => "Dodaj" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 5c6ca8d2f87..41b85875e77 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Desembre", "Settings" => "Configuració", "seconds ago" => "segons enrere", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "avui", "yesterday" => "ahir", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes passat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index c62cc1f126a..f984d1e526b 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Prosinec", "Settings" => "Nastavení", "seconds ago" => "před pár vteřinami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "minulý měsíc", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 30c8b5aba6b..0123b098485 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Rhagfyr", "Settings" => "Gosodiadau", "seconds ago" => "eiliad yn ôl", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "heddiw", "yesterday" => "ddoe", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","",""), "months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", diff --git a/core/l10n/da.php b/core/l10n/da.php index 2ca23b785c7..f6498e5d334 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Indstillinger", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "sidste måned", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", diff --git a/core/l10n/de.php b/core/l10n/de.php index 9ec4044b87b..d8c7ae95582 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php index 9f5278e8790..c0e3e80f0a3 100644 --- a/core/l10n/de_AT.php +++ b/core/l10n/de_AT.php @@ -1,9 +1,9 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "More apps" => "Mehr Apps" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index 9eae0de3077..81c74d841ee 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 1b7397f26ac..e505610a6d2 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", diff --git a/core/l10n/el.php b/core/l10n/el.php index 11abe93d3ef..330a29e2743 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Δεκέμβριος", "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 1b271cf5fe6..997d1f88c46 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,9 +1,9 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Password" => "Passcode" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 9ce2c88a56c..66fc435fec7 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembro", "Settings" => "Agordo", "seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3f4cfa8d11d..677f881da42 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Diciembre", "Settings" => "Ajustes", "seconds ago" => "hace segundos", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "hace meses", "last year" => "el año pasado", "years ago" => "hace años", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index c4e5954d9dc..68c501e05a3 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "diciembre", "Settings" => "Configuración", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 1d1530ecff2..5524411e77d 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Detsember", "Settings" => "Seaded", "seconds ago" => "sekundit tagasi", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "täna", "yesterday" => "eile", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "viimasel kuul", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 180c39fd677..5ab0e032e4b 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Abendua", "Settings" => "Ezarpenak", "seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "gaur", "yesterday" => "atzo", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 03542c2123b..f9af8787e0a 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "دسامبر", "Settings" => "تنظیمات", "seconds ago" => "ثانیه‌ها پیش", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "امروز", "yesterday" => "دیروز", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "ماه قبل", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 90fa84e4eb4..5741f2ce6fb 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "joulukuu", "Settings" => "Asetukset", "seconds ago" => "sekuntia sitten", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "tänään", "yesterday" => "eilen", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "viime kuussa", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 4f7d6cb47f9..641378ac42b 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "décembre", "Settings" => "Paramètres", "seconds ago" => "il y a quelques secondes", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "aujourd'hui", "yesterday" => "hier", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "le mois dernier", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 9822d88aee0..d5492456ca0 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "decembro", "Settings" => "Axustes", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoxe", "yesterday" => "onte", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "último mes", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", diff --git a/core/l10n/he.php b/core/l10n/he.php index 7cb0ebe1470..6a2e5c88eeb 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "דצמבר", "Settings" => "הגדרות", "seconds ago" => "שניות", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "היום", "yesterday" => "אתמול", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "חודש שעבר", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 60b834ef5db..7ad75a41a1b 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -13,10 +13,10 @@ $TRANSLATIONS = array( "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Error" => "त्रुटि", "Share" => "साझा करें", "Share with" => "के साथ साझा", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 9bdad09f741..403df77f819 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -23,13 +23,13 @@ $TRANSLATIONS = array( "December" => "Prosinac", "Settings" => "Postavke", "seconds ago" => "sekundi prije", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "danas", "yesterday" => "jučer", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index aca30e2dfc7..ddec9c1e4ca 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Beállítások", "seconds ago" => "pár másodperce", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ma", "yesterday" => "tegnap", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "múlt hónapban", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index a97f05cb109..9965d4731b0 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -19,9 +19,9 @@ $TRANSLATIONS = array( "October" => "Հոկտեմբեր", "November" => "Նոյեմբեր", "December" => "Դեկտեմբեր", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 75ad8ae4fb3..e0d1e96f6ac 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -20,10 +20,10 @@ $TRANSLATIONS = array( "November" => "Novembre", "December" => "Decembre", "Settings" => "Configurationes", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Cancel" => "Cancellar", "Error" => "Error", "Share" => "Compartir", diff --git a/core/l10n/id.php b/core/l10n/id.php index f4b17d03953..644efde9fc0 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Setelan", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", diff --git a/core/l10n/is.php b/core/l10n/is.php index f8686b2113f..5115d70ee7a 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Stillingar", "seconds ago" => "sek.", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "í dag", "yesterday" => "í gær", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", diff --git a/core/l10n/it.php b/core/l10n/it.php index 8708386dace..9c55f7125a7 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dicembre", "Settings" => "Impostazioni", "seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "oggi", "yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index c1c2158db62..fc184088293 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "12月", "Settings" => "設定", "seconds ago" => "数秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "一月前", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", diff --git a/core/l10n/ka.php b/core/l10n/ka.php index 011fe0af3e4..b6700f00f94 100644 --- a/core/l10n/ka.php +++ b/core/l10n/ka.php @@ -1,12 +1,12 @@ "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Password" => "პაროლი", "Personal" => "პერსონა", "Users" => "მომხმარებლები", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 4666ce33a13..bf9ce1b8a46 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "დეკემბერი", "Settings" => "პარამეტრები", "seconds ago" => "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", diff --git a/core/l10n/kn.php b/core/l10n/kn.php index 129c6e0092e..556cca20dac 100644 --- a/core/l10n/kn.php +++ b/core/l10n/kn.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index ce7e5c57a0b..44738a161a6 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "12월", "Settings" => "설정", "seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "오늘", "yesterday" => "어제", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 471ac9ce377..826fa428ef5 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -1,10 +1,10 @@ "ده‌ستكاری", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", "Username" => "ناوی به‌کارهێنه‌ر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 02d1326fb2a..a4b32698c93 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Astellungen", "seconds ago" => "Sekonnen hir", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "haut", "yesterday" => "gëschter", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "leschte Mount", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 6e69b780274..8a3ca044eaf 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Gruodis", "Settings" => "Nustatymai", "seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šiandien", "yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index c7696fb067d..ad9643e4835 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Decembris", "Settings" => "Iestatījumi", "seconds ago" => "sekundes atpakaļ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šodien", "yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "pagājušajā mēnesī", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 087a74fe94f..b51f8c7b089 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Подесувања", "seconds ago" => "пред секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "денеска", "yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "минатиот месец", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", diff --git a/core/l10n/ml_IN.php b/core/l10n/ml_IN.php index 883f2beb4ee..93c8e33f3e2 100644 --- a/core/l10n/ml_IN.php +++ b/core/l10n/ml_IN.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 239fad9e3c7..64ad88dcb40 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -22,10 +22,10 @@ $TRANSLATIONS = array( "November" => "November", "December" => "Disember", "Settings" => "Tetapan", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Cancel" => "Batal", "Yes" => "Ya", "No" => "Tidak", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 21044ad5d42..e06af3efb98 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -15,13 +15,13 @@ $TRANSLATIONS = array( "November" => "နိုဝင်ဘာ", "December" => "ဒီဇင်ဘာ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "ယနေ့", "yesterday" => "မနေ့က", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "ပြီးခဲ့သောလ", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Choose" => "ရွေးချယ်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 643903a244b..c19e570edbd 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -25,13 +25,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillinger", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", diff --git a/core/l10n/ne.php b/core/l10n/ne.php index 883f2beb4ee..93c8e33f3e2 100644 --- a/core/l10n/ne.php +++ b/core/l10n/ne.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 183899dc4a6..7530a736330 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Instellingen", "seconds ago" => "seconden geleden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "vandaag", "yesterday" => "gisteren", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "vorige maand", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 47023faae88..0cc0944b879 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillingar", "seconds ago" => "sekund sidan", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "førre månad", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index bb70223361f..f47776fb991 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -23,13 +23,13 @@ $TRANSLATIONS = array( "December" => "Decembre", "Settings" => "Configuracion", "seconds ago" => "segonda a", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "uèi", "yesterday" => "ièr", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes passat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 26de64bd0dc..1f291be8aa0 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Grudzień", "Settings" => "Ustawienia", "seconds ago" => "sekund temu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dziś", "yesterday" => "wczoraj", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "w zeszłym miesiącu", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index c131dd727df..892807452c1 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "dezembro", "Settings" => "Ajustes", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "último mês", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 9a3d3282a11..8459176f266 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezembro", "Settings" => "Configurações", "seconds ago" => "Minutos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "ultímo mês", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 190cbc2d6d8..8c082df6af4 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembrie", "Settings" => "Setări", "seconds ago" => "secunde în urmă", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "astăzi", "yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "ultima lună", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index aaa06e5352e..fe00c89b1c2 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Декабрь", "Settings" => "Конфигурация", "seconds ago" => "несколько секунд назад", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сегодня", "yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "в прошлом месяце", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 03caef7841f..ff016e6d6c0 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -22,13 +22,13 @@ $TRANSLATIONS = array( "December" => "දෙසැම්බර්", "Settings" => "සිටුවම්", "seconds ago" => "තත්පරයන්ට පෙර", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "අද", "yesterday" => "ඊයේ", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", diff --git a/core/l10n/sk.php b/core/l10n/sk.php index 9c35f7f4664..7285020288b 100644 --- a/core/l10n/sk.php +++ b/core/l10n/sk.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","") ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 522e31ba2ea..71f50bbdc31 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Nastavenia", "seconds ago" => "pred sekundami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "minulý mesiac", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 0c0e828f0b4..397ede93fd4 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Nastavitve", "seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "danes", "yesterday" => "včeraj", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","",""), "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 2b073bc88b8..7817af41b54 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Dhjetor", "Settings" => "Parametra", "seconds ago" => "sekonda më parë", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "sot", "yesterday" => "dje", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "muajin e shkuar", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 77c8b9225da..d0485ff662c 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "Децембар", "Settings" => "Поставке", "seconds ago" => "пре неколико секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "данас", "yesterday" => "јуче", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index f1bbd2ea7ed..98d227f18a3 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -20,10 +20,10 @@ $TRANSLATIONS = array( "November" => "Novembar", "December" => "Decembar", "Settings" => "Podešavanja", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","",""), "Cancel" => "Otkaži", "Password" => "Lozinka", "You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 03d8dbbb3f4..88639845a5a 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Inställningar", "seconds ago" => "sekunder sedan", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "förra månaden", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", diff --git a/core/l10n/sw_KE.php b/core/l10n/sw_KE.php index 883f2beb4ee..93c8e33f3e2 100644 --- a/core/l10n/sw_KE.php +++ b/core/l10n/sw_KE.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index d715dde88c9..b2e847f5fb2 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "மார்கழி", "Settings" => "அமைப்புகள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "இன்று", "yesterday" => "நேற்று", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", diff --git a/core/l10n/te.php b/core/l10n/te.php index 16a65eea776..f6d165f369f 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -22,13 +22,13 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 7dda8cf6d30..b015b940f2b 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -28,13 +28,13 @@ $TRANSLATIONS = array( "December" => "ธันวาคม", "Settings" => "ตั้งค่า", "seconds ago" => "วินาที ก่อนหน้านี้", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 72923245e96..8628aa60a98 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Aralık", "Settings" => "Ayarlar", "seconds ago" => "saniye önce", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "bugün", "yesterday" => "dün", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "geçen ay", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 3c033ca6d6f..cf1c28a0d2f 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -20,12 +20,12 @@ $TRANSLATIONS = array( "November" => "ئوغلاق", "December" => "كۆنەك", "Settings" => "تەڭشەكلەر", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Cancel" => "ۋاز كەچ", "Yes" => "ھەئە", "No" => "ياق", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 8d921957367..baf756ab7a9 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Грудень", "Settings" => "Налаштування", "seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сьогодні", "yesterday" => "вчора", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index ba81e53cfee..de6a58cea26 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -15,10 +15,10 @@ $TRANSLATIONS = array( "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day ago_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Choose" => "منتخب کریں", "Cancel" => "منسوخ کریں", "Yes" => "ہاں", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 26ba0dbf8ed..265d83a4266 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "Tháng 12", "Settings" => "Cài đặt", "seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hôm nay", "yesterday" => "hôm qua", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 6f7d0dd434b..6d55d7f5121 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "上个月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index be35c4fdbbe..c216584494c 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "上月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 6df564739fb..0a3134f65da 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -20,13 +20,13 @@ $TRANSLATIONS = array( "November" => "十一月", "December" => "十二月", "Settings" => "設定", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "前一月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "個月之前", "Cancel" => "取消", "Yes" => "Yes", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 60caebcd336..d620866bbb8 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "設定", "seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array(,), +"_%n day ago_::_%n days ago_" => array(""), "last month" => "上個月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index a1fa3c848d2..d6bf5771e8d 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -6,9 +6,9 @@ $TRANSLATIONS = array( "Users" => "Gebruikers", "Admin" => "Admin", "web services under your control" => "webdienste onder jou beheer", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/ar.php b/lib/l10n/ar.php index 8225fd17a2f..2e95f28841e 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", "Please double check the installation guides." => "الرجاء التحقق من دليل التنصيب.", "seconds ago" => "منذ ثواني", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","","","",""), "today" => "اليوم", "yesterday" => "يوم أمس", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","","","",""), "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" diff --git a/lib/l10n/be.php b/lib/l10n/be.php index a5d399a3105..1570411eb86 100644 --- a/lib/l10n/be.php +++ b/lib/l10n/be.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 021d924d380..10d3bb610af 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -38,13 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", "seconds ago" => "преди секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "днес", "yesterday" => "вчера", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "последният месец", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", "years ago" => "последните години", "Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 5b3610d9846..a42435a2a47 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -16,13 +16,13 @@ $TRANSLATIONS = array( "Files" => "ফাইল", "Text" => "টেক্সট", "seconds ago" => "সেকেন্ড পূর্বে", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "আজ", "yesterday" => "গতকাল", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "গত মাস", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "গত বছর", "years ago" => "বছর পূর্বে" ); diff --git a/lib/l10n/bs.php b/lib/l10n/bs.php index aa8e01b803d..3cb98906e62 100644 --- a/lib/l10n/bs.php +++ b/lib/l10n/bs.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index a14c12ba964..95faed498cd 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", "Please double check the installation guides." => "Comproveu les guies d'instal·lació.", "seconds ago" => "segons enrere", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "avui", "yesterday" => "ahir", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "el mes passat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "l'any passat", "years ago" => "anys enrere", "Caused by:" => "Provocat per:", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 48f51361eef..ec54376024d 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -41,13 +41,13 @@ $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í.", "seconds ago" => "před pár sekundami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "minulý měsíc", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "minulý rok", "years ago" => "před lety", "Caused by:" => "Příčina:", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 9070897b164..649a1ebffac 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "seconds ago" => "eiliad yn ôl", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "heddiw", "yesterday" => "ddoe", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Could not find category \"%s\"" => "Methu canfod categori \"%s\"" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 62a4bfda9e1..5822c925f47 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "sidste måned", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "sidste år", "years ago" => "år siden", "Caused by:" => "Forårsaget af:", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 2a0eed151fa..ba43ad248dd 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_AT.php b/lib/l10n/de_AT.php index b2de92ed491..15f78e0bce6 100644 --- a/lib/l10n/de_AT.php +++ b/lib/l10n/de_AT.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/de_CH.php b/lib/l10n/de_CH.php index b98e1dc2f9c..d99c144f185 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 104ca305208..a89c069eaab 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 12b718d183f..0fbd134ae92 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Caused by:" => "Προκλήθηκε από:", diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php index 15f8256f3b3..a8175b1400f 100644 --- a/lib/l10n/en@pirate.php +++ b/lib/l10n/en@pirate.php @@ -1,9 +1,9 @@ "web services under your control", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/eo.php b/lib/l10n/eo.php index b769292b8f8..5311dd6eb15 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -34,13 +34,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", "Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 36857786487..2029c9b17fe 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "hace segundos", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mes pasado", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "año pasado", "years ago" => "hace años", "Caused by:" => "Causado por:", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 5e27a74b5db..0632c754052 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "el año pasado", "years ago" => "años atrás", "Caused by:" => "Provocado por:", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index cf6bf919158..a7d823a62c1 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "sekundit tagasi", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "täna", "yesterday" => "eile", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "viimasel kuul", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Caused by:" => "Põhjustaja:", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index b03e1868912..c5ce243f2fa 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez begiratu instalazio gidak.", "seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "gaur", "yesterday" => "atzo", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "joan den urtean", "years ago" => "urte", "Caused by:" => "Honek eraginda:", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 66c464cce39..e2d8ed50aa3 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -38,13 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "امروز", "yesterday" => "دیروز", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "ماه قبل", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "سال قبل", "years ago" => "سال‌های قبل", "Could not find category \"%s\"" => "دسته بندی %s یافت نشد" diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 50342caa098..0efef0c61b1 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -34,13 +34,13 @@ $TRANSLATIONS = array( "Set an admin password." => "Aseta ylläpitäjän salasana.", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "seconds ago" => "sekuntia sitten", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "tänään", "yesterday" => "eilen", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "viime kuussa", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 21e4b561df5..0a040bb9e8e 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -38,13 +38,13 @@ $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.", "seconds ago" => "il y a quelques secondes", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "aujourd'hui", "yesterday" => "hier", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "le mois dernier", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 9196fc6b6cf..085fd7272da 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -41,13 +41,13 @@ $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", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoxe", "yesterday" => "onte", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "último mes", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 4190769f2b7..bab1a6ff424 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", "Please double check the installation guides." => "נא לעיין שוב במדריכי ההתקנה.", "seconds ago" => "שניות", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "היום", "yesterday" => "אתמול", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "חודש שעבר", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "שנה שעברה", "years ago" => "שנים", "Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index 1e7605e4bbf..039dfa4465d 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -4,9 +4,9 @@ $TRANSLATIONS = array( "Personal" => "यक्तिगत", "Settings" => "सेटिंग्स", "Users" => "उपयोगकर्ता", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/hr.php b/lib/l10n/hr.php index 39298b4ccff..d217f924099 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -10,13 +10,13 @@ $TRANSLATIONS = array( "Files" => "Datoteke", "Text" => "Tekst", "seconds ago" => "sekundi prije", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "danas", "yesterday" => "jučer", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "prošlu godinu", "years ago" => "godina" ); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index e3dc649b3a6..c8aff3add72 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "seconds ago" => "pár másodperce", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ma", "yesterday" => "tegnap", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "múlt hónapban", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "tavaly", "years ago" => "több éve", "Caused by:" => "Okozta:", diff --git a/lib/l10n/hy.php b/lib/l10n/hy.php index b2de92ed491..15f78e0bce6 100644 --- a/lib/l10n/hy.php +++ b/lib/l10n/hy.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/ia.php b/lib/l10n/ia.php index 57ec37f4f4e..34f43bc424a 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "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(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/id.php b/lib/l10n/id.php index 4d2a10c3b85..eaec65516b8 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" diff --git a/lib/l10n/is.php b/lib/l10n/is.php index b3d63b060a7..7512d278fb8 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "Texti", "Images" => "Myndir", "seconds ago" => "sek.", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "í dag", "yesterday" => "í gær", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 3975eeebfac..c29ab4833e3 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "oggi", "yesterday" => "ieri", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "anno scorso", "years ago" => "anni fa", "Caused by:" => "Causato da:", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 6724a2c5ae2..482806d4946 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", "seconds ago" => "数秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "一月前", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "一年前", "years ago" => "年前", "Caused by:" => "原因は以下:", diff --git a/lib/l10n/ka.php b/lib/l10n/ka.php index d5f9c783b65..04fefe8bdf1 100644 --- a/lib/l10n/ka.php +++ b/lib/l10n/ka.php @@ -7,11 +7,11 @@ $TRANSLATIONS = array( "ZIP download is turned off." => "ZIP გადმოწერა გამორთულია", "Files" => "ფაილები", "seconds ago" => "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 83a8f0415e1..3cb55277d6c 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", "Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "seconds ago" => "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/lib/l10n/kn.php b/lib/l10n/kn.php index 7ffe04ae962..e7b09649a24 100644 --- a/lib/l10n/kn.php +++ b/lib/l10n/kn.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index d23dd51665a..824882c984d 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -27,13 +27,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", "Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "오늘", "yesterday" => "어제", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "작년", "years ago" => "년 전", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다." diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index b17b3a86992..c99f9dd2a12 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -5,9 +5,9 @@ $TRANSLATIONS = array( "Users" => "به‌كارهێنه‌ر", "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/lb.php b/lib/l10n/lb.php index a32a1fe8647..c25f5b55bd5 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -10,13 +10,13 @@ $TRANSLATIONS = array( "Files" => "Dateien", "Text" => "SMS", "seconds ago" => "Sekonnen hir", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "haut", "yesterday" => "gëschter", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Läschte Mount", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Läscht Joer", "years ago" => "Joren hier" ); diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 8d90cf52a70..fb109b86339 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "Žinučių", "Images" => "Paveikslėliai", "seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šiandien", "yesterday" => "vakar", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "praeitais metais", "years ago" => "prieš metus" ); diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 8031cd027da..2a2daee8d89 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta.", "Please double check the installation guides." => "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību.", "seconds ago" => "sekundes atpakaļ", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šodien", "yesterday" => "vakar", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "pagājušajā mēnesī", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 847dcd637d1..69d4a1cb694 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "Текст", "Images" => "Слики", "seconds ago" => "пред секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "денеска", "yesterday" => "вчера", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "минатиот месец", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "минатата година", "years ago" => "пред години", "Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" diff --git a/lib/l10n/ml_IN.php b/lib/l10n/ml_IN.php index b2de92ed491..15f78e0bce6 100644 --- a/lib/l10n/ml_IN.php +++ b/lib/l10n/ml_IN.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/ms_MY.php b/lib/l10n/ms_MY.php index bdd6bdb2b38..17ef07f83dd 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -9,9 +9,9 @@ $TRANSLATIONS = array( "Authentication error" => "Ralat pengesahan", "Files" => "Fail-fail", "Text" => "Teks", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=1; plural=0;"; diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index c70fef857f8..b2e9ca18139 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -14,13 +14,13 @@ $TRANSLATIONS = array( "Text" => "စာသား", "Images" => "ပုံရိပ်များ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "ယနေ့", "yesterday" => "မနေ့က", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "ပြီးခဲ့သောလ", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 69787c400f2..8e7d095d369 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "forrige år", "years ago" => "år siden", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" diff --git a/lib/l10n/ne.php b/lib/l10n/ne.php index b2de92ed491..15f78e0bce6 100644 --- a/lib/l10n/ne.php +++ b/lib/l10n/ne.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/nl.php b/lib/l10n/nl.php index c8616fcbb85..2d737bd5ebd 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the installation guides." => "Controleer de installatiehandleiding goed.", "seconds ago" => "seconden geleden", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "vandaag", "yesterday" => "gisteren", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "vorige maand", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "vorig jaar", "years ago" => "jaar geleden", "Caused by:" => "Gekomen door:", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 4efc4f8e0d6..28b4f7b7d94 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -12,13 +12,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt.", "Please double check the installation guides." => "Ver vennleg og dobbeltsjekk installasjonsrettleiinga.", "seconds ago" => "sekund sidan", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "førre månad", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "i fjor", "years ago" => "år sidan" ); diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index 0fc38d0ff2c..40a527cc76c 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -12,13 +12,13 @@ $TRANSLATIONS = array( "Authentication error" => "Error d'autentificacion", "Files" => "Fichièrs", "seconds ago" => "segonda a", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "uèi", "yesterday" => "ièr", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mes passat", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "an passat", "years ago" => "ans a" ); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index edbddeeace5..1740676080e 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "sekund temu", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dziś", "yesterday" => "wczoraj", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "w zeszłym miesiącu", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "w zeszłym roku", "years ago" => "lat temu", "Caused by:" => "Spowodowane przez:", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 75987409e70..4ebf587cf86 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "último mês", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causados ​​por:", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 7518aba2a41..3131499e130 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -41,13 +41,13 @@ $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 não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the installation guides." => "Por favor verifique installation guides.", "seconds ago" => "Minutos atrás", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "ultímo mês", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "ano passado", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 788e57f1703..3a555f6a29f 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -20,13 +20,13 @@ $TRANSLATIONS = array( "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.", "seconds ago" => "secunde în urmă", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "astăzi", "yesterday" => "ieri", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "ultima lună", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "ultimul an", "years ago" => "ani în urmă", "Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index a723dfc1113..92b14b9b89e 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -41,13 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", "seconds ago" => "несколько секунд назад", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сегодня", "yesterday" => "вчера", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "в прошлом месяце", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Caused by:" => "Вызвано:", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 6f0d96f044e..d10804cae69 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "පෙළ", "Images" => "අනු රූ", "seconds ago" => "තත්පරයන්ට පෙර", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "අද", "yesterday" => "ඊයේ", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර" ); diff --git a/lib/l10n/sk.php b/lib/l10n/sk.php index abc5a2556c9..54812b15a6f 100644 --- a/lib/l10n/sk.php +++ b/lib/l10n/sk.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index b1a6ee07a5c..ef3dc6eb977 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -41,13 +41,13 @@ $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 nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the installation guides." => "Prosím skontrolujte inštalačnú príručku.", "seconds ago" => "pred sekundami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "minulý mesiac", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "minulý rok", "years ago" => "pred rokmi", "Caused by:" => "Príčina:", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 0e918a9f156..73a397f3c84 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -38,13 +38,13 @@ $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.", "seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "danes", "yesterday" => "včeraj", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","","",""), "last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "lansko leto", "years ago" => "let nazaj", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index a992d10ddb4..ca2364f9864 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", "seconds ago" => "sekonda më parë", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "sot", "yesterday" => "dje", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "muajin e shkuar", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 85b7cfea646..c42419b6d92 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -20,13 +20,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", "Please double check the installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "данас", "yesterday" => "јуче", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "прошле године", "years ago" => "година раније", "Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php index 3a205bc56ee..5ba51bc0ba7 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "Authentication error" => "Greška pri autentifikaciji", "Files" => "Fajlovi", "Text" => "Tekst", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 64efa94242f..fa3ae318cee 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -41,13 +41,13 @@ $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.", "seconds ago" => "sekunder sedan", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "förra månaden", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "förra året", "years ago" => "år sedan", "Caused by:" => "Orsakad av:", diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php index b2de92ed491..15f78e0bce6 100644 --- a/lib/l10n/sw_KE.php +++ b/lib/l10n/sw_KE.php @@ -1,8 +1,8 @@ array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/ta_LK.php b/lib/l10n/ta_LK.php index 72d47ebee48..e70e65845be 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "உரை", "Images" => "படங்கள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "இன்று", "yesterday" => "நேற்று", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" diff --git a/lib/l10n/te.php b/lib/l10n/te.php index 77cc16307e1..524ea0c6024 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -4,13 +4,13 @@ $TRANSLATIONS = array( "Settings" => "అమరికలు", "Users" => "వాడుకరులు", "seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం" ); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 656e492394c..53a150d8f1e 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -18,13 +18,13 @@ $TRANSLATIONS = array( "Text" => "ข้อความ", "Images" => "รูปภาพ", "seconds ago" => "วินาที ก่อนหน้านี้", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 11e04c04157..6dc20e8f595 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -38,13 +38,13 @@ $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 transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "bugün", "yesterday" => "dün", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("",""), "last month" => "geçen ay", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "geçen yıl", "years ago" => "yıl önce", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index d5b714a7a07..731ad904d7e 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -8,11 +8,11 @@ $TRANSLATIONS = array( "Files" => "ھۆججەتلەر", "Text" => "قىسقا ئۇچۇر", "Images" => "سۈرەتلەر", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 0c0f1bc1a9b..26617396e06 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -37,13 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", "seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сьогодні", "yesterday" => "вчора", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "минулого року", "years ago" => "роки тому", "Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 73b7eed9f83..7dc967ccd93 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -6,9 +6,9 @@ $TRANSLATIONS = array( "Users" => "یوزرز", "Admin" => "ایڈمن", "web services under your control" => "آپ کے اختیار میں ویب سروسیز", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), -"_%n day go_::_%n days ago_" => array(,), -"_%n month ago_::_%n months ago_" => array(,) +"_%n minute ago_::_%n minutes ago_" => 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/vi.php b/lib/l10n/vi.php index 68cb6b5c341..ebdb3ab2810 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -18,13 +18,13 @@ $TRANSLATIONS = array( "Text" => "Văn bản", "Images" => "Hình ảnh", "seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hôm nay", "yesterday" => "hôm qua", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "năm trước", "years ago" => "năm trước", "Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 63fffaac782..64c9926d5cf 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -19,13 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", "Please double check the installation guides." => "请双击安装向导。", "seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "上个月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "去年", "years ago" => "年前" ); diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 3311ae7de17..b814b055a22 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -38,13 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", "Please double check the installation guides." => "请认真检查安装指南.", "seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "上月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "去年", "years ago" => "年前", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index 8609987fd6f..ca3e6d504e7 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -7,12 +7,12 @@ $TRANSLATIONS = array( "Admin" => "管理", "Files" => "文件", "Text" => "文字", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "前一月", -"_%n month ago_::_%n months ago_" => array(,) +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 65f38d30dd6..83e0dff3926 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -38,13 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array(,), -"_%n hour ago_::_%n hours ago_" => array(,), +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array(,), +"_%n day go_::_%n days ago_" => array(""), "last month" => "上個月", -"_%n month ago_::_%n months ago_" => array(,), +"_%n month ago_::_%n months ago_" => array(""), "last year" => "去年", "years ago" => "幾年前", "Could not find category \"%s\"" => "找不到分類:\"%s\"" -- GitLab From 5fb7aab7a07d05a7d05c7f0dbb5dacf33d401383 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 15 Aug 2013 13:05:26 +0200 Subject: [PATCH 164/164] remove jPlayer css rules from core css file --- core/css/styles.css | 7 +++---- core/js/js.js | 2 -- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index cf58a3b5f3f..1b58899eef6 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -45,7 +45,7 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea, select, button, .button, -#quota, div.jp-progress, .pager li a { +#quota, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; font-size:1em; background:#fff; color:#333; border:1px solid #ddd; outline:none; @@ -85,7 +85,7 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, -#quota, div.jp-progress, select, .pager li a { +#quota, select, .pager li a { width:auto; padding:.4em; background-color:rgba(240,240,240,.9); font-weight:bold; color:#555; text-shadow:rgba(255,255,255,.9) 0 1px 0; border:1px solid rgba(190,190,190,.9); cursor:pointer; -moz-box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; -webkit-box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; @@ -545,7 +545,7 @@ tbody tr:hover, tr:active { background-color:#f8f8f8; } .personalblock > legend, th, dt, label { font-weight:bold; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } -#quota div, div.jp-play-bar, div.jp-seek-bar { +#quota div { padding: 0; background-color: rgb(220,220,220); font-weight: normal; @@ -553,7 +553,6 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; } #quotatext {padding:.6em 1em;} -div.jp-play-bar, div.jp-seek-bar { padding:0; } .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } diff --git a/core/js/js.js b/core/js/js.js index 4dfe4d0e5ee..60a29342f26 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -758,8 +758,6 @@ $(document).ready(function(){ }); // all the tipsy stuff needs to be here (in reverse order) to work - $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); - $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.displayName .action').tipsy({gravity:'se', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); $('#upload').tipsy({gravity:'w', fade:true}); -- GitLab