diff options
554 files changed, 1838 insertions, 1670 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f788949b1b6..108dcd741c6 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -63,8 +63,12 @@ } #filestable { position: relative; top:37px; width:100%; } tbody tr { background-color:#fff; height:2.5em; } -tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } -tbody tr.selected { background-color:#eee; } +tbody tr:hover, tbody tr:active { + background-color: rgb(240,240,240); +} +tbody tr.selected { + background-color: rgb(230,230,230); +} tbody a { color:#000; } span.extension, span.uploading, td.date { color:#999; } span.extension { text-transform:lowercase; -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; } @@ -81,7 +85,12 @@ table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text- /* Multiselect bar */ #filestable.multiselect { top:63px; } table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } -table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } +table.multiselect thead th { + background-color: rgba(210,210,210,.7); + color: #000; + font-weight: bold; + border-bottom: 0; +} table.multiselect #headerName { width: 100%; } table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } table td.filename a.name { display:block; height:1.5em; vertical-align:middle; margin-left:3em; } @@ -115,10 +124,12 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } } #fileList .name { position:relative; /* Firefox needs to explicitly have this default set … */ } #fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */ - background:rgba(248,248,248,.9); box-shadow:-5px 0 7px rgba(248,248,248,.9); + background-color: rgba(240,240,240,0.898); + box-shadow: -5px 0 7px rgba(240,240,240,0.898); } #fileList tr.selected:hover .fileactions, #fileList tr.mouseOver .fileactions { /* slightly darker color for selected rows */ - background:rgba(238,238,238,.9); box-shadow:-5px 0 7px rgba(238,238,238,.9); + background-color: rgba(230,230,230,.9); + box-shadow: -5px 0 7px rgba(230,230,230,.9); } #fileList .fileactions a.action img { position:relative; top:.2em; } #fileList a.action { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c24d1fd8244..e19a35bbc5b 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -51,7 +51,7 @@ var FileList={ }else{ simpleSize=t('files', 'Pending'); } - var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); + var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2)); var lastModifiedTime = Math.round(lastModified.getTime() / 1000); td = $('<td></td>').attr({ "class": "filesize", diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 1719d25e660..1e94275dcba 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -3,12 +3,12 @@ <?php foreach($_['files'] as $file): $simple_file_size = OCP\simple_file_size($file['size']); // the bigger the file, the darker the shade of grey; megabytes*2 - $simple_size_color = intval(200-$file['size']/(1024*1024)*2); + $simple_size_color = intval(160-$file['size']/(1024*1024)*2); if($simple_size_color<0) $simple_size_color = 0; $relative_modified_date = OCP\relative_modified_date($file['mtime']); // the older the file, the brighter the shade of grey; days*14 $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); - if($relative_date_color>200) $relative_date_color = 200; + if($relative_date_color>160) $relative_date_color = 160; $name = rawurlencode($file['name']); $name = str_replace('%2F', '/', $name); $directory = rawurlencode($file['directory']); diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php index 43fd6752c4a..ae349bfcd3a 100644 --- a/apps/files_external/ajax/addRootCertificate.php +++ b/apps/files_external/ajax/addRootCertificate.php @@ -29,8 +29,12 @@ if ($isValid == false) { // add the certificate if it could be verified if ( $isValid ) { + // disable proxy to prevent multiple fopen calls + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; $view->file_put_contents($filename, $data); OC_Mount_Config::createCertificateBundle(); + \OC_FileProxy::$enabled = $proxyStatus; } else { OCP\Util::writeLog('files_external', 'Couldn\'t import SSL root certificate ('.$filename.'), allowed formats: PEM and DER', diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index ac408786ff6..3e605c59a93 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -88,7 +88,7 @@ OC.MountConfig={ url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), data: { mountPoint: mountPoint, - class: backendClass, + 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, @@ -103,7 +103,7 @@ OC.MountConfig={ url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), data: { mountPoint: mountPoint, - class: backendClass, + 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, @@ -247,15 +247,18 @@ $(document).ready(function() { OC.MountConfig.saveStorage($(this).parent().parent()); }); + $('#sslCertificate').on('click', 'td.remove>img', function() { + var $tr = $(this).parent().parent(); + var row = this.parentNode.parentNode; + $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id}); + $tr.remove(); + return true; + }); + $('#externalStorage').on('click', 'td.remove>img', function() { var tr = $(this).parent().parent(); var mountPoint = $(tr).find('.mountPoint input').val(); - if ( ! mountPoint) { - var row=this.parentNode.parentNode; - $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), { cert: row.id }); - $(tr).remove(); - return true; - } + if ($('#externalStorage').data('admin') === true) { var isPersonal = false; var multiselect = $(tr).find('.chzn-select').val(); diff --git a/core/css/styles.css b/core/css/styles.css index 313f89195df..58e750da4fa 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -141,7 +141,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b padding:0 70px 0 0.5em; margin:0; -moz-box-sizing:border-box; box-sizing:border-box; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; - background:#f7f7f7; border-bottom:1px solid #eee; z-index:50; + background:#eee; border-bottom:1px solid #e7e7e7; z-index:50; } #controls .button { display:inline-block; } @@ -355,14 +355,27 @@ tr .action { width:16px; height:16px; } tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } tbody tr:hover, tr:active { background-color:#f8f8f8; } -#body-settings .personalblock, #body-settings .helpblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +#body-settings .personalblock, #body-settings .helpblock { + padding: .5em 1em; + margin: 1em; + background-color: rgb(240,240,240); + color: #555; + text-shadow: #fff 0 1px 0; + -moz-border-radius: .5em; -webkit-border-radius: .5em; border-radius: .5em; +} #body-settings .personalblock#quota { position:relative; padding:0; } #body-settings #controls+.helpblock { position:relative; margin-top:3em; } .personalblock > legend { margin-top:2em; } .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 { padding:0; background:#e6e6e6; font-weight:normal; white-space:nowrap; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; } +#quota div, div.jp-play-bar, div.jp-seek-bar { + padding: 0; + background-color: rgb(220,220,220); + font-weight: normal; + white-space: nowrap; + -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em; + -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; } #quotatext {padding:.6em 1em;} div.jp-play-bar, div.jp-seek-bar { padding:0; } @@ -427,12 +440,22 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} .help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } .help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} + /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; -moz-box-sizing:border-box; box-sizing:border-box; } div.crumb:first-child { padding:10px 20px 10px 5px; } div.crumb.last { font-weight:bold; background:none; padding-right:10px; } div.crumb a{ padding: 0.9em 0 0.7em 0; } +/* some feedback for hover/tap on breadcrumbs */ +div.crumb:hover, +div.crumb:focus, +div.crumb:active { + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; + filter:alpha(opacity=70); + opacity:.7; +} + /* ---- APP STYLING ---- */ @@ -44,75 +44,81 @@ function handleUnexpectedShutdown() { } } -require_once 'lib/base.php'; +try { -session_write_close(); + require_once 'lib/base.php'; -// Don't do anything if ownCloud has not been installed -if (!OC_Config::getValue('installed', false)) { - exit(0); -} - -// Handle unexpected errors -register_shutdown_function('handleUnexpectedShutdown'); + session_write_close(); -// Delete temp folder -OC_Helper::cleanTmpNoClean(); - -// Exit if background jobs are disabled! -$appmode = OC_BackgroundJob::getExecutionType(); -if ($appmode == 'none') { - TemporaryCronClass::$sent = true; - if (OC::$CLI) { - echo 'Background Jobs are disabled!' . PHP_EOL; - } else { - OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!'))); + // Don't do anything if ownCloud has not been installed + if (!OC_Config::getValue('installed', false)) { + exit(0); } - exit(1); -} -if (OC::$CLI) { - // Create lock file first - TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock'; + // Handle unexpected errors + register_shutdown_function('handleUnexpectedShutdown'); - // We call ownCloud from the CLI (aka cron) - if ($appmode != 'cron') { - // Use cron in feature! - OC_BackgroundJob::setExecutionType('cron'); - } + // Delete temp folder + OC_Helper::cleanTmpNoClean(); - // check if backgroundjobs is still running - if (file_exists(TemporaryCronClass::$lockfile)) { - TemporaryCronClass::$keeplock = true; + // Exit if background jobs are disabled! + $appmode = OC_BackgroundJob::getExecutionType(); + if ($appmode == 'none') { TemporaryCronClass::$sent = true; - echo "Another instance of cron.php is still running!"; + if (OC::$CLI) { + echo 'Background Jobs are disabled!' . PHP_EOL; + } else { + OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!'))); + } exit(1); } - // Create a lock file - touch(TemporaryCronClass::$lockfile); + if (OC::$CLI) { + // Create lock file first + TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock'; - // Work - $jobList = new \OC\BackgroundJob\JobList(); - $jobs = $jobList->getAll(); - foreach ($jobs as $job) { - $job->execute($jobList); - } -} else { - // We call cron.php from some website - if ($appmode == 'cron') { - // Cron is cron :-P - OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!'))); - } else { - // Work and success :-) + // We call ownCloud from the CLI (aka cron) + if ($appmode != 'cron') { + // Use cron in feature! + OC_BackgroundJob::setExecutionType('cron'); + } + + // check if backgroundjobs is still running + if (file_exists(TemporaryCronClass::$lockfile)) { + TemporaryCronClass::$keeplock = true; + TemporaryCronClass::$sent = true; + echo "Another instance of cron.php is still running!"; + exit(1); + } + + // Create a lock file + touch(TemporaryCronClass::$lockfile); + + // Work $jobList = new \OC\BackgroundJob\JobList(); - $job = $jobList->getNext(); - $job->execute($jobList); - $jobList->setLastJob($job); - OC_JSON::success(); + $jobs = $jobList->getAll(); + foreach ($jobs as $job) { + $job->execute($jobList); + } + } else { + // We call cron.php from some website + if ($appmode == 'cron') { + // Cron is cron :-P + OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!'))); + } else { + // Work and success :-) + $jobList = new \OC\BackgroundJob\JobList(); + $job = $jobList->getNext(); + $job->execute($jobList); + $jobList->setLastJob($job); + OC_JSON::success(); + } } -} -// done! -TemporaryCronClass::$sent = true; -exit(); + // done! + TemporaryCronClass::$sent = true; + exit(); + +} catch (Exception $ex) { + \OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL); +}
\ No newline at end of file diff --git a/index.php b/index.php index bf0b287a64b..a064aa5c76f 100755 --- a/index.php +++ b/index.php @@ -23,6 +23,15 @@ $RUNTIME_NOAPPS = true; //no apps, yet -require_once 'lib/base.php'; +try { + + require_once 'lib/base.php'; -OC::handleRequest(); + OC::handleRequest(); + +} catch (Exception $ex) { + //show the user a detailed error page + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +}
\ No newline at end of file diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 8a90de1a4f1..3718c8a3485 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c6e90c22e0c..a031b68eb03 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hulp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoonlik" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Instellings" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Gebruikers" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Toepassings" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index f01a53b53f0..3441571d520 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 fe15956376f..88a6f57929d 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 13fdac78bb2..73d8a9c9722 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 00f96d84fd0..67b581a05da 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 2fec6330cd5..17a6649ddb6 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e3aead3f438..af53a511ca0 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "المساعدة" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شخصي" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "إعدادات" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "المستخدمين" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "التطبيقات" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "المدير" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 90816a1c40d..9987d44ff99 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 eb971f8e404..27fc477b48b 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1152ca2eb1d..7f23971b429 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/bg_BG/files.po index eb125ea64ee..46d9c1c6c6c 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index c644037ea64..83b8906cbb3 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ff016dec288..d3d99043e10 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 07beb96f64b..8d94958f90a 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\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 164bf587c12..bfedf4b5777 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помощ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лични" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Настройки" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Потребители" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Приложения" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Админ" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 4fb44322c42..c88d22ac9da 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9b6ce08d562..a8a9b0ae76d 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 20c44d83d6b..19e77f12741 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d47a538564a..a30f0a31709 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 2bae81308bf..32d039ff17b 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ee46468ac79..f5115942446 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 063ad92c945..211f3350341 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 62c465271a2..ed003580a46 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "সহায়িকা" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "অ্যাপ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "প্রশাসন" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 815333c3ef4..d41ab646fba 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b6252a0f8f1..5b1e57a6443 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 2565c7aa646..e8aa633e6b0 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 42bb79a298e..bad7f54ff8e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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_external.po b/l10n/ca/files_external.po index 5ee2aa50670..4202bcede87 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 7c723b69462..b2b6ad1bec6 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index ddc6cf6bb65..f36679d87f0 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e665ff53aa1..8e5de2da714 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuració" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuaris" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicacions" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administració" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 0010c7a0861..4aa5099f541 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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" @@ -473,7 +473,7 @@ msgstr "Recuperació de contrasenya d'administrador" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 67e18fc7d09..338f63d885e 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index dfb1f059098..ea188f5a367 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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 54a2982d2fb..1360e93381d 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d1025ae695a..d71735e4609 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 70ad6a2b37a..c56c7025577 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 39eeb6d46ab..704051fb678 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ceb1a862886..01a43939e56 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Nápověda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobní" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavení" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uživatelé" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikace" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrace" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a8446b558af..27e39b977a5 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" @@ -472,7 +472,7 @@ msgstr "Heslo obnovy správce" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index be08eb3a9ed..164c9e79768 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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 0f3f306b05d..dc39105a5e7 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\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 065d8718450..248a4552ca5 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 262b2cec28c..db2ab484c96 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 60d3faea4fd..d5e8162d9ac 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index e10335ef7b4..5c3f290a67e 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\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 386f92d1002..c437a9d11ac 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Cymorth" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personol" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Gosodiadau" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Defnyddwyr" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Pecynnau" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Gweinyddu" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9f161a69446..f84626907a2 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7ffdef7c869..0dc7e5dc83c 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 96a3b038bf0..c4cf2f91af6 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Peter Jespersen <flywheeldk@gmail.com>\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 02939ca19cf..eea893fecb0 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index e16624e1769..4406ce7b6cc 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3fd2b7f196b..14f93b8eff2 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index fa25aa9b14e..537aa7e9cc5 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b425c174577..de52b9d5a25 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjælp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personligt" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Indstillinger" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brugere" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 6a40d877923..c761ed1efd9 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 20a5e8e39cf..f3657f500e8 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 4b9a7ea7059..26d0ee600cb 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ninov <ninovdl@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 1628e9fad1a..53c74030dbd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ninov <ninovdl@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index bb017db8949..2ad51443ea3 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 05f66c09587..b8513cd97b6 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 37abe3caccb..b31d8481e26 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fe236b8ee94..1a48973ae23 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ninov <ninovdl@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hilfe" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persönlich" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Einstellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benutzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a26dae98093..271c738d01f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 81819cf6a19..69e53882b1b 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 58782c2d64a..89a8db6f5e0 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index a80df87fa69..ab8b5fadfbe 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index bba770a5453..c22e70ce0b5 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 6ac126c213f..9b53044eef7 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 00f2533ca89..8de7dd8684f 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index b90698dca67..105895a101c 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hilfe" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persönlich" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Einstellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benutzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 52845a98edf..e83776b2f4d 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 3fda98cb9d0..b7b54c71e06 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 48d7917de06..00cc52ccd5f 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Teogramm <theodorewii121@hotmail.com>\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.po b/l10n/el/files.po index cfef12ba5f4..2f569777b31 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 88b11e4a3b6..35aaea8e906 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 61e1795f73d..0bc6c891d0e 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 9b1650a44db..bd810400736 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f182d3bc743..d20f019be5b 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Βοήθεια" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Προσωπικά" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Χρήστες" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Διαχειριστής" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 35e9e3ae423..2bc54778f85 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8d0db741fa9..d5a705b7a47 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ff75bd76cf6..9df18ea3ed0 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8204ac2847f..16e746e5c6c 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: lhpalacio <luizhenrique_gomespalacio@hotmail.com>\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 89af6d4934f..1767f66a0ac 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Baptiste <baptiste+transifex@darthenay.fr>\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 83adcbfa219..a0b27181a48 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index b0e4a29b8ce..9be001b0d6d 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d62a0342339..112d38dc3c5 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index ec3bdd7d56d..62d64f0e226 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 951c41f84da..6eac77f054a 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Helpo" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persona" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Agordo" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uzantoj" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administranto" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 68d2b6e7266..33b46e2ddba 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 717c1541998..c97530b8136 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 658cdb8536d..80d73a7abe8 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\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 82d7438ad61..c464efc0a97 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index e6712583769..13a77bad726 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 6dee73a77af..7e38d35af56 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 6232fb9e94b..489ca41f189 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 059e8366a42..2e92e22e456 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ayuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ajustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicaciones" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 550de686a57..3b7165c0148 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f2e9405d65c..c7cd6fd884c 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\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 3baad4a8f14..3201c21f9b8 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8b367fad68a..c1cbed4a1ec 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index e91fe22e2e1..705385ce3b8 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 2412adc0dbd..569ddd5f298 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index e89f354341d..1d738ef5581 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cd37a7aba1e..bf38a537d43 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ayuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuración" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicaciones" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index f0c1bb57d6b..2f09ef06dcb 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1e742c923ea..0d97c65d8c8 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f1e4fcc2380..5f0af28cc17 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\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 34d61a1d85f..a3b7d28b1ca 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index a15e0a7deb6..520e259b8c8 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\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 482fbacec86..755097fbfa3 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 0cde7fec2e4..7e2f05b4fe3 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\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 bf5fd8ced24..c193cbc0b8e 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Abiinfo" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Isiklik" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Seaded" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Kasutajad" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Rakendused" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 7b0d4451cf5..4f81648e520 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -473,7 +473,7 @@ msgstr "Admin taasteparool" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index a87f06ffa54..2ce1e0e8ec8 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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 9458ed3bdbf..9572dfdd6de 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5ea564b0214..1e832a1d67c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 18ef5b27958..e67b8acbf62 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 de2799c5056..a8b80438057 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 8d152c3e250..7dbb6a4beec 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ce6e8a04ead..7eef442ab9d 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Laguntza" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pertsonala" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ezarpenak" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikazioak" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 66e67c2b58e..bc18dde6661 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f1d6dbc1070..6800daf9f4c 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 310bb19832f..b7eac5e62ff 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 65259873a4a..0c93f45a7a8 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index da02656440d..88c7de3556c 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 93e02b15071..9b8ed74004f 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index de003e3b961..b09c59d6704 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 418a0b9646c..f0a212e732e 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "راهنما" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شخصی" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "تنظیمات" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "کاربران" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr " برنامه ها" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "مدیر" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 00e95cfd8d0..13474ba822d 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 59d4eaf3f8e..e3df271ba1d 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f8a6fcca230..8b269fed49d 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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 3b0e7377494..56c8913edef 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 25e7105bd76..3cf2d0347c1 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5acb54ff5ad..1b6bdb4fd5f 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 036d7f1cd6d..83002ab4f7b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5bb148cbc2c..d6ea52899a1 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ohje" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Asetukset" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Käyttäjät" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Sovellukset" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Ylläpitäjä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 6eb310a2c1b..cf013b95c96 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1ad48482022..4bf4ca1581b 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5ea2bba3ffd..e40e11e4875 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: red0ne <red-0ne@smarty-concept.com>\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 7ac10abbcb2..cad730674a0 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 22c34e68864..5ef61c8cfd4 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 05bbab8ad90..5a730447603 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index ff3af9888a2..b35debbeab3 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 af455687492..6f9bc5c1ec6 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyril Glapa <kyriog@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Aide" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personnel" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Paramètres" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilisateurs" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applications" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0e24f27e983..cd3c5c40bc0 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9b99ed08546..0ac88d216ea 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: plachance <patlachance@gmail.com>\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 d8f74dc22f0..a0b30d9fb01 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\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 fdc2b1fa1cf..3b683190b95 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c35bb32e849..c68d4701866 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 72b88f908b7..d3b3018a8b9 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 120165caeb5..16513d74efd 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d6abaa5967f..360418e9190 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Axuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Axustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicativos" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c3cbc5de08e..354115826d5 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -438,7 +438,7 @@ msgstr "O seu enderezo de correo" #: templates/personal.php:74 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" +msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" #: templates/personal.php:83 templates/personal.php:84 msgid "Language" @@ -466,13 +466,13 @@ msgstr "Crear" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Recuperación do contrasinal do administrador" +msgstr "Contrasinal de recuperación do administrador" #: 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 "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 23a87e823d6..e044c6bf20d 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\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 7ad804720b8..2e0df96b394 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\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 d961de548dd..fcf545a9c85 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 974ab5db98d..26cfc5ad277 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 74b5c28823d..2653e688816 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index cadc4be3818..54fc52620b8 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\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 d596a65542e..df6c709339d 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "עזרה" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "אישי" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "הגדרות" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "משתמשים" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "יישומים" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "מנהל" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index b7bf6a769f9..1486d9004eb 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 2a03b8604d5..ca9b80b2599 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8b7cb4730b9..5c00474f032 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: rktaiwala <rktaiwala@gmail.com>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b98770c3984..56541675e00 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3be5f9c622a..064b11958d1 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "सहयोग" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "यक्तिगत" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 28139163acd..164ccd5f71c 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 99d1cddf378..c3f64b266ae 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 3e55af2b270..e907f86b9f7 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 49fa9fb18ee..0479c526802 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index ef3e4f6b4de..71cc5a3d905 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cf4e8e95b2a..34d07dd9d1f 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoć" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobno" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Postavke" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Korisnici" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikacije" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 7d37ea2f284..6d237686abd 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 de34e9457e7..08f168170c1 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 0bf53544075..309565ead38 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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 d9264213599..3a39364461e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 930d0426648..0f9d5ebc39d 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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 4300707cb8e..a9dfd06b9b0 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index a4e05bb53fb..fcb618e9399 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cdd940d27a2..82bfa29c887 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Súgó" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Személyes" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Beállítások" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Felhasználók" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Alkalmazások" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Adminsztráció" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index be2d44f4951..855361da544 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e03432f6635..440a6356ea0 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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 d66d6a82868..63c3c13dde8 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index e09f5096b6d..c56d6181c54 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 694b0c24dba..288785e46c2 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b3a591da46f..129ab3e29c6 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 2ff999d46e1..a26369ab7a2 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index e9505c63589..6139d6791e5 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/ia/files.po index 11212ba486a..36c2422f41a 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 7f9d3d9f2f5..e5dfd4cd1ff 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 baa6c94a5e3..da646a06119 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 5119be176e0..f3064aecda2 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e9f27bba669..ed7a77df506 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Adjuta" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configurationes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usatores" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicationes" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f7e1597ed17..681da984f28 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1942bca216a..a2140645b78 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8b6c3621ee5..f144fa1e744 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 01cec4e33c0..617d7e35216 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index f70053bee64..fe7ec6480e7 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8abdbc9871c..6aa8da6f32f 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index ea107995e8b..63f8a38010e 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 30b5dc8ff2e..67263c2b245 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Bantuan" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pribadi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Setelan" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Pengguna" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikasi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 5425b7ffc78..e8f3ba6f62a 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 184a04f6253..544aabb1ad4 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9fc7ec7fc27..40662709dea 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Magnus Magnusson <maggiymir@gmail.com>\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 cefd8bdee95..54bb3187211 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 5ef0f33c038..eb85430062a 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1901dcbe8d0..8fddc9bf1d9 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 9279dd8767d..c5f9d0c5dd1 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 04fa7060f46..dc430bf4d14 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjálp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Um mig" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Stillingar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Notendur" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Forrit" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Stjórnun" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 00e385b26f2..3e343602167 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8e9b39f5dc0..94586fbf40c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Magnus Magnusson <maggiymir@gmail.com>\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 dbf1b9e4184..ff8a395c396 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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 65473f268bd..b34d57328a8 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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_external.po b/l10n/it/files_external.po index 352a3a0f563..3b1468ba8a1 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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 7cb8a66f016..a2f3d796794 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0ef0ba270fd..1b0c7ae635e 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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 46edfe81deb..59f76f3534c 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Aiuto" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personale" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Impostazioni" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utenti" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicazioni" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 15775aa673e..b808f0f199a 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" @@ -472,7 +472,7 @@ msgstr "Password di ripristino amministrativa" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password." #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 16e0eacac76..8d3238385f8 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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 a80e107429f..05fdf163d13 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\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 abf3d00d5c1..c1ca254ef43 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 3abff2eaf2d..f3a184be03e 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c6dddf3f393..ef4bcec77cc 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 6ec8fef0417..881a2de647d 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a316a55d721..a6f94383539 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ヘルプ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ユーザ" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "アプリ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 2add76cf5ae..8a0f3d3f53a 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,14 +4,15 @@ # # Translators: # Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2013 +# plazmism <gomidori@live.jp>, 2013 # tt yn <tetuyano+transi@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: plazmism <gomidori@live.jp>\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" @@ -473,7 +474,7 @@ msgstr "管理者復旧パスワード" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index fce67d51bf8..bee60e7a313 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\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 71cbc64d705..5412c33fef9 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 09d09a592f8..86d0cdf945a 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d1181b9db67..58e08bc169e 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e4763f41574..7066486ebdb 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 9efe4f432e4..d35367d7644 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\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 1e3186d1080..d6b6a9ba652 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 71fdd4c7daf..f76f4ff3a7e 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\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 308d32af16c..7f14878aaf7 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "დახმარება" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "პირადი" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "პარამეტრები" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "მომხმარებელი" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "აპლიკაციები" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ადმინისტრატორი" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 8831bad30bc..ff09ce5da9c 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 fc0dd6cfae7..c05b1c9c6c6 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 4619deaf2ee..09f836f6ab3 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 061262d6415..5738ace607e 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index fbbeaec4eb0..95f832777de 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5aeac5a6fb7..f843bc845e1 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/ko/files_trashbin.po index 0371f7cd72e..120e91f66a5 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1d51a99e039..cb45991e6d5 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "도움말" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "개인" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "설정" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "사용자" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "앱" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "관리자" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index c2a37c36303..bc9aff12c4b 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 68d651e73f4..e35eb349d18 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b4e0bb9ae08..b4f916821f8 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/ku_IQ/files.po index cd20bf0905e..1dc5daca48b 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c3befa9be88..0960adbca3b 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index c72b98a6267..79f5da1fede 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 6f3e8a2f64d..b82de7fb722 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "یارمەتی" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "دهستكاری" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "بهكارهێنهر" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "بهرنامهكان" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "بهڕێوهبهری سهرهكی" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index dba270fbd96..906b080897d 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ecbb5f57511..e959634da82 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d9bd2a972c5..b01e5bac5bc 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e27cb70cd75..f6b899c8042 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 203f3ae7686..46158823d4e 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5a0963ac352..79a370ca22f 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index aae54e6c91c..68898ece605 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 0d2727e2f14..da922bc5d7a 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hëllef" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Perséinlech" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Astellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benotzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicatiounen" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1f5af195964..18435e1f250 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7658c6d2726..4543599a143 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e76dd08cb39..554a6bbe340 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\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 28950147979..e56e73160a8 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index d6c1e0803d6..a59135036d9 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Min2liz <min2lizz@gmail.com>\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 67915cf893b..ec78a0ece1c 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 1dfdb118766..c4023b2e82f 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\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 c19dda11e49..bedaf696ab8 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pagalba" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Asmeniniai" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nustatymai" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Vartotojai" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programos" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administravimas" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 2be895a0bcf..ed797bfdea5 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3e3267b94ce..929d3911fca 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 0de3a3d8064..f70e73f9ecb 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 811a9fa7e17..44c5cd23a88 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 88174c907fa..881d66c22d3 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 477ef7237a3..6d1b4574d1a 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index f04155c7bdc..0de6d7caa2c 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3465513c8d1..322a046fd97 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Palīdzība" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personīgi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Iestatījumi" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Lietotāji" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Lietotnes" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administratori" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 1a2e1ef447d..64ce30109d4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 4e71f1daf7a..ad596343f7e 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ec361557955..c9eb09c43ac 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 21e7d44865c..f415c8b7b1f 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index a969dc67c4d..190d3824ddd 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ecf36754a8c..5909aaac05d 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index e84fc88279d..95f327614e6 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 40da124eac8..c67d3c4a405 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помош" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лично" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Подесувања" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Корисници" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Аппликации" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Админ" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3ff847fb0f0..14a28b7e5f0 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c84d1b6c148..982fb57a8d9 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 2588057d567..0fec32b2ccc 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/ms_MY/files.po index 6f0e7aad7c9..6cceab3bb9d 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index d162f1c8c16..f2d2a4facc6 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 61490b6cf23..8fcc64ab18c 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b6e0cf73bc5..e0ace588a7f 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 79d90bc9249..af8ce97212e 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Bantuan" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Peribadi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Tetapan" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Pengguna" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikasi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 41ef7653d75..ba8164f4f71 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d36b31d09ca..c9a2b748a3f 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 27d20c928e6..dcf8107e5e7 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1b3fabd0d60..653225d03ec 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 422aaf85f46..d4a9009b83b 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 57dd1d36093..13d9374b1a8 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "အကူအညီ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "အက်ဒမင်" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index ecd8744d619..cc41aae8516 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 aab57df4cd3..96dd51fb7fb 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 745111851e3..68f58025f84 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 22e966f8b54..9f8a8b3efcf 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index c462eb309a7..11bb62601b0 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index f0767aad1b7..c3746e2a1e8 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjelp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personlig" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Innstillinger" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brukere" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apper" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 067ce86ac0c..0f28157fe1b 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 72f3433fa04..a403152e4ad 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 82fa74c2b0e..4d06155ccc6 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: André Koot <meneer@tken.net>\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 2784d11809d..7752d281778 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index f1b9bf29eb1..f98d4c9f907 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot <meneer@tken.net>\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 491d7e83b68..1405d4a2e2b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 7f36fbde9ad..9e2b5075f1f 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c962bdcb214..4df92ab94ee 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Help" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoonlijk" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Instellingen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Gebruikers" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Beheerder" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 21528e37f81..b065718202a 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 0f2557d3e80..89846813d92 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot <meneer@tken.net>\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 3f3eb8332f4..c449bf96eb7 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\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 f97ef67ce1d..3b4d27d66b1 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 05ae4eb504a..155e8cde360 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 33fb848b539..cb4181fda48 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 06d0f5af153..a6eb1ef45de 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\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 af7df0e2c81..c19e82dbda0 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjelp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personleg" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Innstillingar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brukarar" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Program" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrer" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index fb378d82d7b..14970866c72 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 26891c08405..756a0e2c6a8 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 280be574d14..8ee352afe77 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 fca7e672f34..ee46c6f9648 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index e92f01aac01..71eac19f43f 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 0933766c22d..8f758bca71a 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index ff7f1d0ad65..bfba438eff8 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 244e7a321cb..249cc069fe1 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuracion" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usancièrs" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index fab0d090615..2931c0ebeb5 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9b93510e315..28b9c18dc19 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9214bd8016e..8cb360953c5 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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 0b9dc1b1c18..004841ecdad 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: adbrand <pkwiecin@adbrand.pl>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index e7e4f919c49..8aa3c498654 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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 4aa2980a599..bddcb6ef968 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 9ef342d2508..5fc525f1227 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cf8aba0bb02..cead1733f67 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoc" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobiste" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ustawienia" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Użytkownicy" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikacje" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 6d4f620e891..8e1c531a3aa 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 73460f9f461..77d63dc0967 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: orcio6 <orcio6@o2.pl>\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 6aa4735f5f6..6a87f105bbf 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\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 ef5d497485b..67ad1e60d5c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 156e5ba5b3e..61d7b40ea19 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index dd203c1174d..d8cc823d3b2 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 962449a8897..4a5512d874e 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 20185510516..1d24d3c7e2f 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pessoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ajustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuários" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicações" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 6d22375b619..a6aa0509e40 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bjamalaro <bjamalaro@yahoo.com.br>, 2013 # Flávio Veras <flaviove@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"Last-Translator: bjamalaro <bjamalaro@yahoo.com.br>\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" @@ -472,7 +473,7 @@ msgstr "Recuperação da Senha do Administrador" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha." #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 079b6a30dbc..b72b019791b 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\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 471ef2e90a8..2f5fdf5f52b 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: bmgmatias <bmgmatias@gmail.com>\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 56ea27aa64d..cde4bd2fe72 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: bmgmatias <bmgmatias@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index da0220832e4..47381cc6316 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\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 b11914ce134..1215efd25ba 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 530ee175fd8..14e8275dc7a 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7773182c3b7..ef605341253 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pessoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configurações" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilizadores" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicações" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 99fa3574d2f..832ada0f706 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 80f41d396c4..2a3fc932417 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\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 c12ce40179f..7bf564a49a0 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 879294fc3c1..1aaf124c8cc 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 531acc5f4fe..bf5db908182 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d2cbca42327..e509d3a92d8 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 920ea21f42a..71b0644ad41 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7273db1a8c7..b38d5d7a674 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajutor" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Setări" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilizatori" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicații" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a2cd4b88d36..83b37d94994 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b04c34ca36f..344678eadd9 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cccac051f19..0578f9aa51b 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Langaru <langaru@gmail.com>\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 666b8c81152..02c07114568 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Friktor <antonshramko@yandex.ru>\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_external.po b/l10n/ru/files_external.po index 31029f5a911..2722a7c0e8b 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 257cfe11e31..16f42e1ac6c 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c61bd2b9296..6edac7e3130 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b6ae06366fa..0791f8879b7 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Friktor <antonshramko@yandex.ru>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помощь" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Личное" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Конфигурация" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Пользователи" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Приложения" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index c3dc0abd01d..d18bb63a005 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 607a3bbc166..c569c67af87 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Fenuks <fenuksuh@ya.ru>\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 b9d421beddf..55d30b24e30 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 67c47fbda79..87e442e0f50 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index ee68ef40dfc..c20b3df3106 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f64ec864f0e..e6de17b6634 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index b8c79bb8077..cb21c984b78 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9de3f6dedd3..42af352186f 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "උදව්" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "සිටුවම්" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "යෙදුම්" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "පරිපාලක" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 85ede4e608b..0fc8fd785fe 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 43dfc7d37a8..8f0971afc43 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c36c7fcc667..ccdfba9b5eb 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\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 93061558e55..1a47c8b6da3 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 6b82daf913c..ca70d39c310 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\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 3e65f12b67b..9a1cd878c36 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index cb08d59bdfe..3f1c1fb600d 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8f3dbdcd6ef..90bdadd9f41 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoc" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobné" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavenia" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Používatelia" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikácie" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrátor" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 1c45a8b58dc..713d0a77217 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9a3291dad6b..8b1e52f7e28 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\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 ff92b055532..1c886017c42 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index ea02f844a90..83b7d7a0e2c 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 9a237da51bc..c7ba402ab0e 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index f454c3b0884..69313d6c6ee 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index ab5fc6d212b..65f295ebaca 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 283b917d7dd..f949c6a62c6 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoč" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osebno" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavitve" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uporabniki" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Skrbništvo" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b663f9300ab..1302cb8f88c 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 78c7981e8dd..0ca6dd20a28 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 36dc29636cc..bca3dff1aaa 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 9f2dbc42556..df6a46e49cb 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index e130f905aa5..5dc4d6a8a9e 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 39c470d29c8..f41b4d31d04 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 0fad985218d..b0c2693ecdb 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c3976801bfa..9d4c5a02c10 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ndihmë" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personale" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Parametra" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Përdoruesit" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "App" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 9d14e58f416..c8a77a47943 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 942f6548550..fd69f404693 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 4dd9fdfc2af..17309d159ec 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8f55774b807..26fecf53e0b 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index fdf5055fab6..12878f651f8 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 1b2739626df..821d5a57be4 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 957c84f24be..a283f2b88f8 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 a182762e2a3..2a3d65d1e5b 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помоћ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лично" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Поставке" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Корисници" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Апликације" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Администратор" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0ac06c7b6cb..f6527a7d749 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b1f8156ffdb..c0f94ff8940 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 04e544fed84..17eb6f05b6f 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/sr@latin/files.po index bab96c2f7ec..1ded1154bbf 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 1ebc994dafa..35b50f4b21b 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 84b2bd1de4b..01aa998bd17 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index e2875516685..ad664f2c7b1 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f621ecf2181..1dbcf544fa7 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoć" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Lično" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Podešavanja" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Korisnici" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Adninistracija" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index a766452d681..20e2f534c2a 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 88b9eb87963..282d88bc80d 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b9076946228..badf96f4be1 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 364ec19f98d..ae4a79dff1e 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 493b1327375..2345e3a9048 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index a29e3fd14f5..3020acc5ee6 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 541fa809da3..ddc6afce45c 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjälp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personligt" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Inställningar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Användare" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Program" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 076ecd8c402..eccf138e300 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -4,14 +4,15 @@ # # Translators: # Jan Busk, 2013 +# Jan Busk, 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: Jan Busk\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" @@ -473,7 +474,7 @@ msgstr "Admin återställningslösenord" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Enter the recovery password in order to recover the users files during password change" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 065300500eb..7b02c641919 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index a65df674cb9..1cd1bb15a70 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e2c786bf69e..cf350ec05ee 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 65130bc8673..bef22321d58 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 bec006510bb..55f493c1a18 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index aa54bac42e2..517ed2b22ad 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3d0648f5a58..86485937ca2 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "உதவி" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "பயனாளர்" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "செயலிகள்" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "நிர்வாகம்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 543510719fb..9c24f88e5cd 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 94c0df79e3e..affd247d767 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 6aa17c774ee..73161c6681b 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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.po b/l10n/te/files.po index 8c51bd1976e..21000fa6e03 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 37bde93041a..d7e1c912c36 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 1a616119867..78a9d4a1545 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 b503d1844f4..531c5e4c0da 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "సహాయం" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "అమరికలు" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "వాడుకరులు" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 75a66ae433c..62b68d8d5b2 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 bd76a11a386..6ff8efb842f 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 8e2258cc47a..06c591e9b01 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b9a904385eb..81c52e7d5bf 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8807165afbc..427e1957e7f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index e29125e5de7..5e61eb5c823 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 27b3b6b989e..57d4d7e1044 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 068b5c97874..bab3ba59aa6 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 5815404b6a3..488972d3e63 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 02960b167ac..38d2d73ef30 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c53a5b8f69d..fc7306b09f0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 4a7aa072d4c..0eda5984b77 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 802771dad3f..aafdce7cb67 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ec61276c140..7048ccf0ccb 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 69bdbb3b349..5937981390c 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index ccaf217e3f7..5b27a30d2bd 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f9a4f05bba2..195b76e3f41 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index bcf8bc65482..1aec59f118a 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7c7cc3d6f86..6ff4dc1a829 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "แอปฯ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ผู้ดูแล" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 03f870df355..88a985f4f50 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 6b3bf07f84d..831be417ef7 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f9e6486c748..97095af583b 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\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 d3ebdfae683..70cb40229a2 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index f852edaf64f..c8c26f8f761 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 a6e534171ef..d5dd8bf1c8b 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 38601b9c91e..58833c8c5f4 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 7bd5909ca44..7ed58621977 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Yardım" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Kişisel" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ayarlar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Kullanıcılar" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Uygulamalar" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Yönetici" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 415cd779f22..1f6abeb6b3c 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ab1a51ccbd5..79e5a778ed8 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\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 fc744974b2e..3a070d59144 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 041a47962cf..e680cf835ac 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c8d460a20b7..c54d1aa0ae4 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b024d95d799..c5506e66edf 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: uqkun <uqkun@outlook.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index c305885e463..fe99efadb85 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 8431d09324c..11714520c31 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ياردەم" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شەخسىي" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "ئەپلەر" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index bb6b0767ccf..e54e6ab8105 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 9dbe65a748c..1c7191b98b5 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index ec6e346371a..4d3e1fe4d9b 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d89e4461a78..49ffed959ff 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 8aa0bbf240b..ce602c5527f 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e0e138eb08e..56b6d689905 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 67ddad52da3..388db08141b 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 19907b75811..fc97ae56925 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ 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" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Допомога" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Особисте" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Налаштування" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Користувачі" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Додатки" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Адмін" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 58d6ddb9a92..dfd560c57a4 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 3cdcb7381f5..006344d7856 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 525e3c50f31..6221babd398 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 59f793764f5..0ec378051e1 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index e662bb1a145..8a19d02aab4 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ad310840b8c..d2bd5d3cbec 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "مدد" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ذاتی" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "سیٹینگز" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "یوزرز" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "ایپز" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ایڈمن" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index fa2688fd3e9..2999d0a0ba8 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 48334f186b4..5a810047eab 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 86474234c66..fd5fa1e56a9 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: xtdv <truong.tx8@gmail.com>\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 c48e336fc80..fa1c87f15b8 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 4ca9187a76d..1c798121eec 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xtdv <truong.tx8@gmail.com>\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 b1191e63d74..3866afcc851 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index b1dff0973d5..5610f4db45d 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ac384682839..1a02f6e87b4 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Giúp đỡ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Cá nhân" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Cài đặt" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Người dùng" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Ứng dụng" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Quản trị" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 9e7b0c6149d..8bd8099270b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 98461719c9c..f39bf23575f 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e90a7b93fc3..f7fd81ee579 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: hyy0591 <yangyu.huang@gmail.com>\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 f9d2017c0be..d36873bb84c 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 477137bac38..cf9a0d80d29 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: hyy0591 <yangyu.huang@gmail.com>\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 6dd7cc9a0a2..54443235bfb 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 05d3e9d461f..8f12c7fb15e 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 fc042553910..7f12b8f11e3 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "帮助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "私人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "设置" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用户" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "程序" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理员" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 2ac880c22a3..08dfa5e4fff 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 ee59a1a2e82..302dad9bdc5 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 739ab358ded..e64324185e3 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: zhangmin <zm1990s@gmail.com>\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 a8e33eda55d..fff3cef778a 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: zhangmin <zm1990s@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 4b003e86602..63ba4cbe144 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 459a8decb75..f8391a08818 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 01c19992bc2..f25059b251c 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 6cea910bd58..abbe2135ccb 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: modokwang <modokwang@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "帮助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "个人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "设置" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用户" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "应用" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index af7ca4bd0be..43a903f31cf 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5eef1bce510..fb342a94f73 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: modokwang <modokwang@gmail.com>\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 866a9269fb9..9a48e296c7d 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 c818e894a7e..fbcb711c830 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index bd2e25b9ef0..d80adda59db 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 31a5969b1b4..969b9139a9f 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 9a39db9eeaf..4c69b76dbc2 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 f5cc3d2438e..79cd2c8f7c2 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "幫助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用戶" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "軟件" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index d9aee240ffa..e4ae4f4a137 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 d4521dd95f7..09f43f32931 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 cb2eeb82314..9616e4ff8b3 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\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.po b/l10n/zh_TW/files.po index 4ac318f1f4d..f1e5469c0fc 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 125686a62db..b9c8f7e626f 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\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 22d719b2864..5668ed5042f 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a951d989a30..236dc0c1d69 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 aef3941ec97..333354a13b9 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "說明" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "使用者" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "應用程式" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1a340dcb7e5..ff41fb0869d 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 e1138987a66..2a32a7a3fd4 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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/db.php b/lib/db.php index 61836551833..080e895e352 100644 --- a/lib/db.php +++ b/lib/db.php @@ -23,7 +23,8 @@ class DatabaseException extends Exception{ private $query; - public function __construct($message, $query){ + //FIXME getQuery seems to be unused, maybe use parent constructor with $message, $code and $previous + public function __construct($message, $query = null){ parent::__construct($message); $this->query = $query; } @@ -392,9 +393,59 @@ class OC_DB { } /** + * @brief execute a prepared statement, on error write log and throw exception + * @param mixed $stmt PDOStatementWrapper | MDB2_Statement_Common , + * an array with 'sql' and optionally 'limit' and 'offset' keys + * .. or a simple sql query string + * @param array $parameters + * @return result + * @throws DatabaseException + */ + 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 + // 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'; + throw new DatabaseException($message); + } + $stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null); + } + if (is_array($stmt)){ + // convert to prepared statement + if ( ! array_key_exists('sql', $stmt) ) { + $message = 'statement array must at least contain key \'sql\''; + throw new DatabaseException($message); + } + if ( ! array_key_exists('limit', $stmt) ) { + $stmt['limit'] = null; + } + if ( ! array_key_exists('limit', $stmt) ) { + $stmt['offset'] = null; + } + $stmt = self::prepare($stmt['sql'], $stmt['limit'], $stmt['offset']); + } + self::raiseExceptionOnError($stmt, 'Could not prepare statement'); + if ($stmt instanceof PDOStatementWrapper || $stmt instanceof MDB2_Statement_Common) { + $result = $stmt->execute($parameters); + self::raiseExceptionOnError($result, 'Could not execute statement'); + } else { + if (is_object($stmt)) { + $message = 'Expected a prepared statement or array got ' . get_class($stmt); + } else { + $message = 'Expected a prepared statement or array got ' . gettype($stmt); + } + throw new DatabaseException($message); + } + return $result; + } + + /** * @brief gets last value of autoincrement * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix * @return int id + * @throws DatabaseException * * MDB2 lastInsertID() * @@ -404,25 +455,27 @@ class OC_DB { public static function insertid($table=null) { self::connect(); $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type == 'pgsql' ) { - $query = self::prepare('SELECT lastval() AS id'); - $row = $query->execute()->fetchRow(); + if( $type === 'pgsql' ) { + $result = self::executeAudited('SELECT lastval() AS id'); + $row = $result->fetchRow(); + self::raiseExceptionOnError($row, 'fetching row for insertid failed'); return $row['id']; - } - if( $type == 'mssql' ) { + } else if( $type === 'mssql') { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $table = str_replace( '*PREFIX*', $prefix, $table ); } - return self::$connection->lastInsertId($table); - }else{ + $result = 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; } - return self::$connection->lastInsertId($table); + $result = self::$connection->lastInsertId($table); } + self::raiseExceptionOnError($result, 'insertid failed'); + return $result; } /** @@ -512,6 +565,8 @@ class OC_DB { //clean up memory unlink( $file2 ); + + self::raiseExceptionOnError($definition,'Failed to parse the database definition'); // Die in case something went wrong if( $definition instanceof MDB2_Schema_Error ) { @@ -528,11 +583,7 @@ class OC_DB { $ret=self::$schema->createDatabase( $definition ); - // Die in case something went wrong - if( $ret instanceof MDB2_Error ) { - OC_Template::printErrorPage( self::$MDB2->getDebugOutput().' '.$ret->getMessage() . ': ' - . $ret->getUserInfo() ); - } + self::raiseExceptionOnError($ret,'Failed to create the database structure'); return true; } @@ -552,13 +603,7 @@ class OC_DB { $content = file_get_contents( $file ); $previousSchema = self::$schema->getDefinitionFromDatabase(); - if (PEAR::isError($previousSchema)) { - $error = $previousSchema->getMessage(); - $detail = $previousSchema->getDebugInfo(); - $message = 'Failed to get existing database structure for updating ('.$error.', '.$detail.')'; - OC_Log::write('core', $message, OC_Log::FATAL); - throw new Exception($message); - } + self::raiseExceptionOnError($previousSchema,'Failed to get existing database structure for updating'); // Make changes and save them to an in-memory file $file2 = 'static://db_scheme'; @@ -582,13 +627,7 @@ class OC_DB { //clean up memory unlink( $file2 ); - if (PEAR::isError($op)) { - $error = $op->getMessage(); - $detail = $op->getDebugInfo(); - $message = 'Failed to update database structure ('.$error.', '.$detail.')'; - OC_Log::write('core', $message, OC_Log::FATAL); - throw new Exception($message); - } + self::raiseExceptionOnError($op,'Failed to update database structure'); return true; } @@ -641,15 +680,9 @@ class OC_DB { } $query = substr($query, 0, strlen($query) - 5); try { - $stmt = self::prepare($query); - $result = $stmt->execute($inserts); - - } catch(PDOException $e) { - $entry = 'DB Error: "'.$e->getMessage() . '"<br />'; - $entry .= 'Offending command was: ' . $query . '<br />'; - OC_Log::write('core', $entry, OC_Log::FATAL); - error_log('DB error: '.$entry); - OC_Template::printErrorPage( $entry ); + $result = self::executeAudited($query, $inserts); + } catch(DatabaseException $e) { + OC_Template::printExceptionErrorPage( $e ); } if((int)$result->numRows() === 0) { @@ -674,16 +707,12 @@ class OC_DB { } try { - $result = self::prepare($query); + $result = self::executeAudited($query, $inserts); } catch(PDOException $e) { - $entry = 'DB Error: "'.$e->getMessage() . '"<br />'; - $entry .= 'Offending command was: ' . $query.'<br />'; - OC_Log::write('core', $entry, OC_Log::FATAL); - error_log('DB error: ' . $entry); - OC_Template::printErrorPage( $entry ); + OC_Template::printExceptionErrorPage( $e ); } - return $result->execute($inserts); + return $result; } /** @@ -891,7 +920,32 @@ class OC_DB { return false; } } + /** + * check if a result is an error, writes a log entry and throws an exception, works with MDB2 and PDOException + * @param mixed $result + * @param string message + * @return void + * @throws DatabaseException + */ + public static function raiseExceptionOnError($result, $message = null) { + if(self::isError($result)) { + if ($message === null) { + $message = self::getErrorMessage($result); + } else { + $message .= ', Root cause:' . self::getErrorMessage($result); + } + throw new DatabaseException($message, getErrorCode($result)); + } + } + public static function getErrorCode($error) { + if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { + $code = $error->getCode(); + } elseif ( self::$backend==self::BACKEND_PDO and self::$PDO ) { + $code = self::$PDO->errorCode(); + } + return $code; + } /** * returns the error code and message as a string for logging * works with MDB2 and PDOException @@ -901,9 +955,7 @@ class OC_DB { public static function getErrorMessage($error) { if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { $msg = $error->getCode() . ': ' . $error->getMessage(); - if (defined('DEBUG') && DEBUG) { - $msg .= '(' . $error->getDebugInfo() . ')'; - } + $msg .= ' (' . $error->getDebugInfo() . ')'; } elseif (self::$backend==self::BACKEND_PDO and self::$PDO) { $msg = self::$PDO->errorCode() . ': '; $errorInfo = self::$PDO->errorInfo(); diff --git a/lib/response.php b/lib/response.php index 49d79fda709..674176d078b 100644 --- a/lib/response.php +++ b/lib/response.php @@ -11,6 +11,7 @@ class OC_Response { const STATUS_NOT_MODIFIED = 304; const STATUS_TEMPORARY_REDIRECT = 307; const STATUS_NOT_FOUND = 404; + const STATUS_INTERNAL_SERVER_ERROR = 500; /** * @brief Enable response caching by sending correct HTTP headers @@ -70,6 +71,9 @@ class OC_Response { case self::STATUS_NOT_FOUND; $status = $status . ' Not Found'; break; + case self::STATUS_INTERNAL_SERVER_ERROR; + $status = $status . ' Internal Server Error'; + break; } header($protocol.' '.$status); } diff --git a/lib/setup.php b/lib/setup.php index a63cc664dbc..71a2d13937e 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -106,12 +106,6 @@ class OC_Setup { 'hint' => $e->getHint() ); return($error); - } catch (Exception $e) { - $error[] = array( - 'error' => $e->getMessage(), - 'hint' => '' - ); - return($error); } } elseif($dbtype == 'pgsql') { @@ -127,7 +121,7 @@ class OC_Setup { try { self::setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => $l->t('PostgreSQL username and/or password not valid'), 'hint' => $l->t('You need to enter either an existing account or the administrator.') @@ -150,7 +144,7 @@ class OC_Setup { try { self::setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $dbtablespace, $username); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => $l->t('Oracle connection could not be established'), 'hint' => $e->getMessage().' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') @@ -177,7 +171,7 @@ class OC_Setup { try { self::setupMSSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => 'MS SQL username and/or password not valid', 'hint' => 'You need to enter either an existing account or the administrator.' @@ -326,7 +320,7 @@ class OC_Setup { $connection_string = "host='$e_host' dbname=postgres user='$e_user' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { - throw new Exception($l->t('PostgreSQL username and/or password not valid')); + throw new DatabaseSetupException($l->t('PostgreSQL username and/or password not valid')); } $e_user = pg_escape_string($dbuser); //check for roles creation rights in postgresql @@ -371,7 +365,7 @@ class OC_Setup { $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { - throw new Exception($l->t('PostgreSQL username and/or password not valid')); + throw new DatabaseSetupException($l->t('PostgreSQL username and/or password not valid')); } $query = "select count(*) FROM pg_class WHERE relname='{$dbtableprefix}users' limit 1"; $result = pg_query($connection, $query); @@ -461,9 +455,9 @@ class OC_Setup { if(!$connection) { $e = oci_error(); if (is_array ($e) && isset ($e['message'])) { - throw new Exception($e['message']); + throw new DatabaseSetupException($e['message']); } - throw new Exception($l->t('Oracle username and/or password not valid')); + throw new DatabaseSetupException($l->t('Oracle username and/or password not valid')); } //check for roles creation rights in oracle @@ -530,7 +524,7 @@ class OC_Setup { } $connection = @oci_connect($dbuser, $dbpass, $easy_connect_string); if(!$connection) { - throw new Exception($l->t('Oracle username and/or password not valid')); + throw new DatabaseSetupException($l->t('Oracle username and/or password not valid')); } $query = "SELECT count(*) FROM user_tables WHERE table_name = :un"; $stmt = oci_parse($connection, $query); @@ -641,7 +635,7 @@ class OC_Setup { } else { $entry = ''; } - throw new Exception($l->t('MS SQL username and/or password not valid: %s', array($entry))); + throw new DatabaseSetupException($l->t('MS SQL username and/or password not valid: %s', array($entry))); } OC_Config::setValue('dbuser', $dbuser); diff --git a/lib/template.php b/lib/template.php index 9467dedb62a..01f0fc28b60 100644 --- a/lib/template.php +++ b/lib/template.php @@ -535,4 +535,25 @@ class OC_Template{ $content->printPage(); die(); } + + /** + * print error page using Exception details + * @param Exception $exception + */ + + public static function printExceptionErrorPage(Exception $exception) { + $error_msg = $exception->getMessage(); + if ($exception->getCode()) { + $error_msg = '['.$exception->getCode().'] '.$error_msg; + } + $hint = $exception->getTraceAsString(); + while ($exception = $exception->previous()) { + $error_msg .= '<br/>Caused by: '; + if ($exception->getCode()) { + $error_msg .= '['.$exception->getCode().'] '; + } + $error_msg .= $exception->getMessage(); + }; + self::printErrorPage($error_msg, $hint); + } } diff --git a/public.php b/public.php index 3d7fd378af4..0154b59cce3 100644 --- a/public.php +++ b/public.php @@ -1,21 +1,31 @@ <?php $RUNTIME_NOAPPS = true; -require_once 'lib/base.php'; -OC::checkMaintenanceMode(); -if (!isset($_GET['service'])) { - header('HTTP/1.0 404 Not Found'); - exit; -} -$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service'])); -if(is_null($file)) { - header('HTTP/1.0 404 Not Found'); - exit; -} -$parts=explode('/', $file, 2); -$app=$parts[0]; +try { -OC_Util::checkAppEnabled($app); -OC_App::loadApp($app); + require_once 'lib/base.php'; + OC::checkMaintenanceMode(); + if (!isset($_GET['service'])) { + header('HTTP/1.0 404 Not Found'); + exit; + } + $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service'])); + if(is_null($file)) { + header('HTTP/1.0 404 Not Found'); + exit; + } -require_once OC_App::getAppPath($app) .'/'. $parts[1]; + $parts=explode('/', $file, 2); + $app=$parts[0]; + + OC_Util::checkAppEnabled($app); + OC_App::loadApp($app); + + require_once OC_App::getAppPath($app) .'/'. $parts[1]; + +} catch (Exception $ex) { + //show the user a detailed error page + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +}
\ No newline at end of file diff --git a/remote.php b/remote.php index 7738de04f60..ec0f2ecef72 100644 --- a/remote.php +++ b/remote.php @@ -1,40 +1,49 @@ <?php $RUNTIME_NOAPPS = true; -require_once 'lib/base.php'; -$path_info = OC_Request::getPathInfo(); -if ($path_info === false || $path_info === '') { - OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); - exit; -} -if (!$pos = strpos($path_info, '/', 1)) { - $pos = strlen($path_info); -} -$service=substr($path_info, 1, $pos-1); -$file = OC_AppConfig::getValue('core', 'remote_' . $service); +try { -if(is_null($file)) { - OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); - exit; -} + require_once 'lib/base.php'; + $path_info = OC_Request::getPathInfo(); + if ($path_info === false || $path_info === '') { + OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); + exit; + } + if (!$pos = strpos($path_info, '/', 1)) { + $pos = strlen($path_info); + } + $service=substr($path_info, 1, $pos-1); -$file=ltrim($file, '/'); + $file = OC_AppConfig::getValue('core', 'remote_' . $service); -$parts=explode('/', $file, 2); -$app=$parts[0]; -switch ($app) { - case 'core': - $file = OC::$SERVERROOT .'/'. $file; - break; - default: - OC_Util::checkAppEnabled($app); - OC_App::loadApp($app); - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { - $file = OC_App::getAppPath($app) .'/'. $parts[1]; - }else{ - $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1]; - } - break; -} -$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; -require_once $file; + if(is_null($file)) { + OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); + exit; + } + + $file=ltrim($file, '/'); + + $parts=explode('/', $file, 2); + $app=$parts[0]; + switch ($app) { + case 'core': + $file = OC::$SERVERROOT .'/'. $file; + break; + default: + OC_Util::checkAppEnabled($app); + OC_App::loadApp($app); + if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { + $file = OC_App::getAppPath($app) .'/'. $parts[1]; + }else{ + $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1]; + } + break; + } + $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; + require_once $file; + +} catch (Exception $ex) { + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +}
\ No newline at end of file diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index bf3a34f1472..8732c6518a8 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -21,5 +21,6 @@ if( OC_User::deleteUser( $username )) { OC_JSON::success(array("data" => array( "username" => $username ))); } else{ + $l = OC_L10N::get('core'); OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); } diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 769c25d7bff..268fbc29964 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -102,6 +102,7 @@ "Login Name" => "Nom d'accés", "Create" => "Crea", "Admin Recovery Password" => "Recuperació de contrasenya d'administrador", +"Enter the recovery password in order to recover the users files during password change" => "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya", "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "Il·limitat", "Other" => "Un altre", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index fdd38e7bb2a..c0668676ddd 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -102,6 +102,7 @@ "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", +"Enter the recovery password in order to recover the users files during password change" => "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", "Default Storage" => "Výchozí úložiště", "Unlimited" => "Neomezeně", "Other" => "Jiný", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 8a9e237e120..baf25a274b7 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -102,6 +102,7 @@ "Login Name" => "Kasutajanimi", "Create" => "Lisa", "Admin Recovery Password" => "Admin taasteparool", +"Enter the recovery password in order to recover the users files during password change" => "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus", "Default Storage" => "Vaikimisi maht", "Unlimited" => "Piiramatult", "Other" => "Muu", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 05f3dc07c4a..ee60aa82a27 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -94,14 +94,15 @@ "Display Name" => "Amosar o nome", "Email" => "Correo", "Your email address" => "O seu enderezo de correo", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperación do contrasinal", +"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar o contrasinal de recuperación", "Language" => "Idioma", "Help translate" => "Axude na tradución", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", "Login Name" => "Nome de acceso", "Create" => "Crear", -"Admin Recovery Password" => "Recuperación do contrasinal do administrador", +"Admin Recovery Password" => "Contrasinal de recuperación do administrador", +"Enter the recovery password in order to recover the users files during password change" => "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal", "Default Storage" => "Almacenamento predeterminado", "Unlimited" => "Sen límites", "Other" => "Outro", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 38c22ea06de..c2ee1e4997f 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -102,6 +102,7 @@ "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", +"Enter the recovery password in order to recover the users files during password change" => "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.", "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index ad42d3f085b..f9ef8e86829 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -102,6 +102,7 @@ "Login Name" => "ログイン名", "Create" => "作成", "Admin Recovery Password" => "管理者復旧パスワード", +"Enter the recovery password in order to recover the users files during password change" => "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください", "Default Storage" => "デフォルトストレージ", "Unlimited" => "無制限", "Other" => "その他", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 824940da583..e78e907cf86 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -102,6 +102,7 @@ "Login Name" => "Nome de Login", "Create" => "Criar", "Admin Recovery Password" => "Recuperação da Senha do Administrador", +"Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index dca9692999b..d0475c0263d 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -102,6 +102,7 @@ "Login Name" => "Inloggningsnamn", "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", +"Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the users files during password change", "Default Storage" => "Förvald lagring", "Unlimited" => "Obegränsad", "Other" => "Annat", diff --git a/settings/templates/personal.php b/settings/templates/personal.php index f0002c505c8..b11f1912f51 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -4,12 +4,6 @@ * See the COPYING-README file. */?> -<div id="quota" class="personalblock"><div style="width:<?php p($_['usage_relative']);?>%;"> - <p id="quotatext"><?php print_unescaped($l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', - array($_['usage'], $_['total_space'])));?></p> -</div></div> - - <div class="clientsbox"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> @@ -28,6 +22,15 @@ </div> +<div id="quota" class="personalblock"> + <div style="width:<?php p($_['usage_relative']);?>%;"> + <p id="quotatext"> + <?php print_unescaped($l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', + array($_['usage'], $_['total_space'])));?> + </p> + </div> +</div> + <?php if($_['passwordChangeSupported']) { diff --git a/status.php b/status.php index 9d6ac87c671..bac01c11b28 100644 --- a/status.php +++ b/status.php @@ -23,13 +23,20 @@ $RUNTIME_NOAPPS = true; //no apps, yet -require_once 'lib/base.php'; +try { -if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; -$values=array( - 'installed'=>$installed, - 'version'=>implode('.', OC_Util::getVersion()), - 'versionstring'=>OC_Util::getVersionString(), - 'edition'=>OC_Util::getEditionString()); + require_once 'lib/base.php'; -echo(json_encode($values)); + if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; + $values=array( + 'installed'=>$installed, + 'version'=>implode('.', OC_Util::getVersion()), + 'versionstring'=>OC_Util::getVersionString(), + 'edition'=>OC_Util::getEditionString()); + + echo(json_encode($values)); + +} catch (Exception $ex) { + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); +}
\ No newline at end of file diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 9d6750751f3..71fe69c6aa8 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" ?> <phpunit bootstrap="bootstrap.php" strict="true" - timeoutForSmallTests="30" - timeoutForMediumTests="300" + timeoutForSmallTests="900" + timeoutForMediumTests="900" timeoutForLargeTests="900" > <testsuite name='ownCloud'> |