From 87b7a236486394c9224b25ada0814ca9dc0406fd Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 12 Sep 2012 17:00:25 -0400 Subject: [PATCH 01/41] Don't get metadata directly from the 'cached' file cache after upload --- apps/files/ajax/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 7709becc6a..fb3e277a21 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ if(strpos($dir, '..') === false) { for($i=0;$i<$fileCount;$i++) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - $meta=OC_FileCache_Cached::get($target); + $meta = OC_FileCache::get($target); $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); } } From b2d60ed6b709333e1cab1c566bc3bdd677d5a3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 12 Sep 2012 22:56:16 +0200 Subject: [PATCH 02/41] add proper logging to filecache --- lib/filecache/cached.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 4e8ff23793..9b1eb4f780 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -18,8 +18,19 @@ class OC_FileCache_Cached{ $root=OC_Filesystem::getRoot(); } $path=$root.$path; - $query=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); - $result=$query->execute(array(md5($path)))->fetchRow(); + $stmt=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); + if ( ! OC_DB::isError($stmt) ) { + $result=$stmt->execute(array(md5($path))); + if ( ! OC_DB::isError($result) ) { + $result = $result->fetchRow(); + } else { + OC:Log::write('OC_FileCache_Cached', 'could not execute get: '. OC_DB::getErrorMessage($result), OC_Log::ERROR); + $result = false; + } + } else { + OC_Log::write('OC_FileCache_Cached', 'could not prepare get: '. OC_DB::getErrorMessage($stmt), OC_Log::ERROR); + $result = false; + } if(is_array($result)) { if(isset(self::$savedData[$path])) { $result=array_merge($result, self::$savedData[$path]); From 53b0e6dcc1c3d13ccf61ad35be74b774f97375d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 12 Sep 2012 23:01:06 +0200 Subject: [PATCH 03/41] fix schema updates with oracle\n basically this took me all day to debug and hack, we need a new db layer! MDB2 is dead and pecl oci8 even more so! It has officially been deprecated in php 5.4: http://www.php.net/manual/de/function.ocifetchinto.php --- 3rdparty/MDB2/Driver/Reverse/oci8.php | 48 +++++++++++++----------- 3rdparty/MDB2/Driver/oci8.php | 53 +++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 22 deletions(-) diff --git a/3rdparty/MDB2/Driver/Reverse/oci8.php b/3rdparty/MDB2/Driver/Reverse/oci8.php index c86847fa6b..d89ad77137 100644 --- a/3rdparty/MDB2/Driver/Reverse/oci8.php +++ b/3rdparty/MDB2/Driver/Reverse/oci8.php @@ -84,12 +84,12 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common $owner = $db->dsn['username']; } - $query = 'SELECT column_name name, - data_type "type", - nullable, - data_default "default", - COALESCE(data_precision, data_length) "length", - data_scale "scale" + $query = 'SELECT column_name AS "name", + data_type AS "type", + nullable AS "nullable", + data_default AS "default", + COALESCE(data_precision, data_length) AS "length", + data_scale AS "scale" FROM all_tab_columns WHERE (table_name=? OR table_name=?) AND (owner=? OR owner=?) @@ -146,6 +146,10 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common if ($default === 'NULL') { $default = null; } + //ugly hack, but works for the reverse direction + if ($default == "''") { + $default = ''; + } if ((null === $default) && $notnull) { $default = ''; } @@ -221,11 +225,11 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common $owner = $db->dsn['username']; } - $query = "SELECT aic.column_name, - aic.column_position, - aic.descend, - aic.table_owner, - alc.constraint_type + $query = 'SELECT aic.column_name AS "column_name", + aic.column_position AS "column_position", + aic.descend AS "descend", + aic.table_owner AS "table_owner", + alc.constraint_type AS "constraint_type" FROM all_ind_columns aic LEFT JOIN all_constraints alc ON aic.index_name = alc.constraint_name @@ -234,7 +238,7 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common WHERE (aic.table_name=? OR aic.table_name=?) AND (aic.index_name=? OR aic.index_name=?) AND (aic.table_owner=? OR aic.table_owner=?) - ORDER BY column_position"; + ORDER BY column_position'; $stmt = $db->prepare($query); if (PEAR::isError($stmt)) { return $stmt; @@ -331,9 +335,9 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common \'SIMPLE\' "match", CASE alc.deferrable WHEN \'NOT DEFERRABLE\' THEN 0 ELSE 1 END "deferrable", CASE alc.deferred WHEN \'IMMEDIATE\' THEN 0 ELSE 1 END "initiallydeferred", - alc.search_condition, + alc.search_condition AS "search_condition", alc.table_name, - cols.column_name, + cols.column_name AS "column_name", cols.position, r_alc.table_name "references_table", r_cols.column_name "references_field", @@ -509,14 +513,14 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common return $db; } - $query = 'SELECT trigger_name, - table_name, - trigger_body, - trigger_type, - triggering_event trigger_event, - description trigger_comment, - 1 trigger_enabled, - when_clause + $query = 'SELECT trigger_name AS "trigger_name", + table_name AS "table_name", + trigger_body AS "trigger_body", + trigger_type AS "trigger_type", + triggering_event AS "trigger_event", + description AS "trigger_comment", + 1 AS "trigger_enabled", + when_clause AS "when_clause" FROM user_triggers WHERE trigger_name = \''. strtoupper($trigger).'\''; $types = array( diff --git a/3rdparty/MDB2/Driver/oci8.php b/3rdparty/MDB2/Driver/oci8.php index 9f4137d610..a1eefc94d1 100644 --- a/3rdparty/MDB2/Driver/oci8.php +++ b/3rdparty/MDB2/Driver/oci8.php @@ -634,6 +634,59 @@ class MDB2_Driver_oci8 extends MDB2_Driver_Common return $query; } + /** + * Obtain DBMS specific SQL code portion needed to declare a generic type + * field to be used in statement like CREATE TABLE, without the field name + * and type values (ie. just the character set, default value, if the + * field is permitted to be NULL or not, and the collation options). + * + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * default + * Text value to be used as default for this field. + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * charset + * Text value with the default CHARACTER SET for this field. + * collation + * Text value with the default COLLATION for this field. + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field's options. + * @access protected + */ + function _getDeclarationOptions($field) + { + $charset = empty($field['charset']) ? '' : + ' '.$this->_getCharsetFieldDeclaration($field['charset']); + + $notnull = empty($field['notnull']) ? ' NULL' : ' NOT NULL'; + $default = ''; + if (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $db = $this->getDBInstance(); + if (PEAR::isError($db)) { + return $db; + } + $valid_default_values = $this->getValidTypes(); + $field['default'] = $valid_default_values[$field['type']]; + if ($field['default'] === '' && ($db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL)) { + $field['default'] = ' '; + } + } + if (null !== $field['default']) { + $default = ' DEFAULT ' . $this->quote($field['default'], $field['type']); + } + } + + $collation = empty($field['collation']) ? '' : + ' '.$this->_getCollationFieldDeclaration($field['collation']); + + return $charset.$default.$notnull.$collation; + } + // }}} // {{{ _doQuery() From c7054f374ca0d77df12df513426e583e7fba4e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 12 Sep 2012 23:03:12 +0200 Subject: [PATCH 04/41] log details for an error when upgrading the schema --- lib/db.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index 4317f79848..bfb8e4afbd 100644 --- a/lib/db.php +++ b/lib/db.php @@ -457,7 +457,8 @@ class OC_DB { $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); - OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.')', OC_Log::FATAL); + $detail = $previousSchema->getDebugInfo(); + OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.', '.$detail.')', OC_Log::FATAL); return false; } From d3553ce33d6e971c5e19ef83c8a3cfe1d8e76ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 12 Sep 2012 23:10:45 +0200 Subject: [PATCH 05/41] correctly calculate the MDB2 portability --- lib/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index bfb8e4afbd..4d8e5a1a86 100644 --- a/lib/db.php +++ b/lib/db.php @@ -187,7 +187,7 @@ class OC_DB { // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE), + 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, 'log_line_break' => '
', 'idxname_format' => '%s', 'debug' => true, From 10b74f9d057a22f018eaaf535cb597354d82e948 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 13 Sep 2012 00:08:04 +0200 Subject: [PATCH 06/41] Don't hide errors doing the versioning copy --- apps/files_versions/lib/versions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index dedd83fc25..e429782aed 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -118,7 +118,7 @@ class Storage { if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true); // store a new version of a file - @$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); + $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); // expire old revisions if necessary Storage::expire($filename); From 78a022fda657febf4d42ba10f10fb3c7feaf7efa Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 13 Sep 2012 00:08:52 +0200 Subject: [PATCH 07/41] dirname can also return '.' for empty path --- lib/connector/sabre/node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 2916575e2d..ecbbef8129 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -235,7 +235,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr static public function removeETagPropertyForPath($path) { // remove tags from this and parent paths $paths = array(); - while ($path != '/' && $path != '') { + while ($path != '/' && $path != '.' && $path != '') { $paths[] = $path; $path = dirname($path); } From e3e4a2bec2809a506fcca7450373b9d736a8da3e Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 13 Sep 2012 00:12:10 +0200 Subject: [PATCH 08/41] Enable post_write trigger This is used when uploading a file with webdav. The trigger will add the file to the cache and make it show up in listings --- lib/filesystemview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 3a17af510c..743f940301 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -295,12 +295,12 @@ class OC_FilesystemView { OC_Filesystem::signal_post_create, array( OC_Filesystem::signal_param_path => $path) ); - }/* + } OC_Hook::emit( OC_Filesystem::CLASSNAME, OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) - );*/ + ); OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ From bb0b438ace9ae51b5aec64dd1a1a4868f2f1d4b5 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 13 Sep 2012 02:03:54 +0200 Subject: [PATCH 09/41] [tx-robot] updated from transifex --- apps/files/l10n/fr.php | 1 + apps/files/l10n/pl.php | 2 + apps/files/l10n/ru_RU.php | 38 ++++++++++++++ l10n/af/settings.po | 16 ++++-- l10n/ar/settings.po | 16 ++++-- l10n/ar_SA/settings.po | 16 ++++-- l10n/bg_BG/settings.po | 16 ++++-- l10n/ca/settings.po | 22 +++++--- l10n/cs_CZ/settings.po | 22 +++++--- l10n/da/settings.po | 20 +++++--- l10n/de/settings.po | 20 +++++--- l10n/el/settings.po | 20 +++++--- l10n/eo/settings.po | 20 +++++--- l10n/es/settings.po | 22 +++++--- l10n/et_EE/settings.po | 22 +++++--- l10n/eu/settings.po | 22 +++++--- l10n/eu_ES/settings.po | 16 ++++-- l10n/fa/settings.po | 16 ++++-- l10n/fi/settings.po | 16 ++++-- l10n/fi_FI/settings.po | 22 +++++--- l10n/fr/files.po | 8 +-- l10n/fr/settings.po | 22 +++++--- l10n/gl/settings.po | 20 +++++--- l10n/he/settings.po | 16 ++++-- l10n/hi/settings.po | 16 ++++-- l10n/hr/settings.po | 20 +++++--- l10n/hu_HU/settings.po | 16 ++++-- l10n/hy/settings.po | 16 ++++-- l10n/ia/settings.po | 16 ++++-- l10n/id/settings.po | 16 ++++-- l10n/id_ID/settings.po | 16 ++++-- l10n/it/settings.po | 22 +++++--- l10n/ja_JP/settings.po | 22 +++++--- l10n/ko/settings.po | 20 +++++--- l10n/lb/settings.po | 20 +++++--- l10n/lt_LT/settings.po | 18 +++++-- l10n/lv/settings.po | 16 ++++-- l10n/mk/settings.po | 16 ++++-- l10n/ms_MY/settings.po | 16 ++++-- l10n/nb_NO/settings.po | 20 +++++--- l10n/nl/settings.po | 22 +++++--- l10n/nn_NO/settings.po | 16 ++++-- l10n/oc/settings.po | 18 +++++-- l10n/pl/files.po | 10 ++-- l10n/pl/settings.po | 22 +++++--- l10n/pl_PL/settings.po | 16 ++++-- l10n/pt_BR/settings.po | 18 +++++-- l10n/pt_PT/settings.po | 20 +++++--- l10n/ro/settings.po | 20 +++++--- l10n/ru/settings.po | 22 +++++--- l10n/ru_RU/files.po | 79 +++++++++++++++-------------- l10n/ru_RU/settings.po | 16 ++++-- l10n/sk_SK/settings.po | 16 ++++-- l10n/sl/settings.po | 22 +++++--- l10n/so/settings.po | 16 ++++-- l10n/sr/settings.po | 16 ++++-- l10n/sr@latin/settings.po | 16 ++++-- l10n/sv/settings.po | 22 +++++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 14 +++-- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/settings.po | 22 +++++--- l10n/tr/settings.po | 16 ++++-- l10n/uk/settings.po | 16 ++++-- l10n/vi/settings.po | 22 +++++--- l10n/zh_CN.GB2312/settings.po | 16 ++++-- l10n/zh_CN/settings.po | 22 +++++--- l10n/zh_TW/settings.po | 20 +++++--- settings/l10n/ca.php | 2 - settings/l10n/cs_CZ.php | 2 - settings/l10n/da.php | 2 - settings/l10n/de.php | 2 - settings/l10n/el.php | 2 - settings/l10n/eo.php | 2 - settings/l10n/es.php | 2 - settings/l10n/et_EE.php | 2 - settings/l10n/eu.php | 2 - settings/l10n/fi_FI.php | 2 - settings/l10n/fr.php | 2 - settings/l10n/gl.php | 2 - settings/l10n/hr.php | 2 - settings/l10n/it.php | 2 - settings/l10n/ja_JP.php | 2 - settings/l10n/ko.php | 2 - settings/l10n/lb.php | 2 - settings/l10n/lt_LT.php | 1 - settings/l10n/nb_NO.php | 2 - settings/l10n/nl.php | 2 - settings/l10n/pl.php | 2 - settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 2 - settings/l10n/ro.php | 2 - settings/l10n/ru.php | 2 - settings/l10n/sl.php | 2 - settings/l10n/sv.php | 2 - settings/l10n/th_TH.php | 2 - settings/l10n/vi.php | 2 - settings/l10n/zh_CN.php | 2 - settings/l10n/zh_TW.php | 1 - 105 files changed, 895 insertions(+), 432 deletions(-) create mode 100644 apps/files/l10n/ru_RU.php diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 929a2ffd4a..c0f08b118d 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", "Files" => "Fichiers", +"Unshare" => "Ne plus partager", "Delete" => "Supprimer", "already exists" => "existe déjà", "replace" => "remplacer", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index d3814333ac..289a613915 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", "Files" => "Pliki", +"Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", "already exists" => "Już istnieje", "replace" => "zastap", @@ -15,6 +16,7 @@ "replaced" => "zastąpione", "undo" => "wróć", "with" => "z", +"unshared" => "Nie udostępnione", "deleted" => "skasuj", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php new file mode 100644 index 0000000000..d272d9580d --- /dev/null +++ b/apps/files/l10n/ru_RU.php @@ -0,0 +1,38 @@ + "Ошибка отсутствует, файл загружен успешно.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", +"The uploaded file was only partially uploaded" => "Загружаемый файл был загружен частично", +"No file was uploaded" => "Файл не был загружен", +"Missing a temporary folder" => "Отсутствует временная папка", +"Failed to write to disk" => "Не удалось записать на диск", +"Files" => "Файлы", +"Delete" => "Удалить", +"already exists" => "уже существует", +"replace" => "отмена", +"cancel" => "отменить", +"replaced" => "заменено", +"undo" => "отменить действие", +"with" => "с", +"deleted" => "удалено", +"Upload Error" => "Ошибка загрузки", +"Upload cancelled." => "Загрузка отменена", +"Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", +"Size" => "Размер", +"Modified" => "Изменен", +"File handling" => "Работа с файлами", +"Maximum upload size" => "Максимальный размер загружаемого файла", +"max. possible: " => "Максимально возможный", +"Save" => "Сохранить", +"New" => "Новый", +"Text file" => "Текстовый файл", +"Folder" => "Папка", +"Upload" => "Загрузить ", +"Cancel upload" => "Отмена загрузки", +"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", +"Name" => "Имя", +"Download" => "Загрузить", +"Upload too large" => "Загрузка слишком велика", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер.", +"Current scanning" => "Текущее сканирование" +); diff --git a/l10n/af/settings.po b/l10n/af/settings.po index b6b7b9e156..e6f46a265a 100644 --- a/l10n/af/settings.po +++ b/l10n/af/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ece25b8fda..3ee010d847 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 22e19d517d..0319103fe1 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index fc6de0ffaa..19376143c6 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Е-пощата е записана" @@ -117,11 +121,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8065c1ebee..0aea78aa04 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 06:39+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "S'ha desat el correu electrònic" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "executa una tasca en carregar cada pàgina" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php està registrat en un servei web cron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usa el servei cron del sistema" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 3511d379d6..f57fe29fdc 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 13:36+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,6 +40,10 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail uložen" @@ -120,12 +124,16 @@ msgid "execute one task with each page loaded" msgstr "spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je registrován jako služba webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "použít systémovou službu cron" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 022d5ee233..4406d06cee 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email adresse gemt" @@ -122,12 +126,16 @@ msgid "execute one task with each page loaded" msgstr "udfør en opgave for hver indlæst side" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php er tilmeldt en webcron tjeneste" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "brug systemets cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index e0d81804f6..c6825198ff 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 07:52+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -44,6 +44,10 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-Mail gespeichert" @@ -124,12 +128,16 @@ msgid "execute one task with each page loaded" msgstr "Führe eine Aufgabe pro geladener Seite aus." #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ist beim Webcron-Service registriert" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "Nutze System-Cron-Service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index bbec7abd9b..19fcdfb501 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Το Email αποθηκεύτηκε " @@ -121,12 +125,16 @@ msgid "execute one task with each page loaded" msgstr "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "Χρήση της υπηρεσίας cron του συστήματος" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d51e0c5423..d58cb7ddeb 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "La retpoŝtadreso konserviĝis" @@ -116,12 +120,16 @@ msgid "execute one task with each page loaded" msgstr "lanĉi unu taskon po ĉiu paĝo ŝargita" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php estas registrita kiel webcron-servilo" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "uzi la cron-servon de la sistemo" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 8d1da62428..5b0d89c24d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 15:29+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,6 +43,10 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Correo guardado" @@ -123,12 +127,16 @@ msgid "execute one task with each page loaded" msgstr "ejecutar una tarea con cada página cargada" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php se registra en un servicio webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usar servicio cron del sistema" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 90042b1958..d46fc7de21 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: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 11:12+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,6 +36,10 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Kiri on salvestatud" @@ -116,12 +120,16 @@ msgid "execute one task with each page loaded" msgstr "käivita iga laetud lehe juures üks ülesanne" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php on webcron teenuses registreeritud" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "kasuta süsteemide cron teenuseid" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1fb2c354a9..be8c78b68d 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 14:30+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Eposta gorde da" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "exekutatu zeregina orri karga bakoitzean" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php webcron zerbitzu batean erregistratuta dago" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "erabili sistemaren cron zerbitzua" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index bca1c25deb..267038a707 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 9f3314e706..f3d18a42a2 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "ایمیل ذخیره شد" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index b2daafd990..cc2d672b09 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2f9cfc602d..8831474047 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 16:14+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Sähköposti tallennettu" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php on rekisteröity webcron-palvelulla" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "käytä järjestelmän cron-palvelua" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c60dcb1567..07b8735002 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 14:35+0000\n" -"Last-Translator: Geoffrey Guerrier \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-12 16:41+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Fichiers" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Ne plus partager" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ae731ca30b..f780bb5692 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 20:41+0000\n" -"Last-Translator: Brice \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,6 +46,10 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail sauvegardé" @@ -126,12 +130,16 @@ msgid "execute one task with each page loaded" msgstr "exécuter une tâche pour chaque page chargée" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php est enregistré comme un service webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utiliser le service cron du système " +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 60828ee96f..769aacbf09 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Correo electrónico gardado" @@ -116,12 +120,16 @@ msgid "execute one task with each page loaded" msgstr "executar unha tarefa con cada páxina cargada" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php está rexistrada como un servizo webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utilice o servizo cron do sistema" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index bd56d36427..a8bc3ed1f9 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "הדוא״ל נשמר" @@ -117,11 +121,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index db0cc7e30f..78b99c18d3 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index ef3eacff14..bf3c88d31f 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email spremljen" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je registriran kod webcron servisa" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "koristi sistemski cron servis" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 5f3d66a4dd..a240440b5f 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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email mentve" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 394122cdf1..d758fb7e94 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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index ab80ed851a..f90eb48800 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c2bd93b9e1..b32796f551 100644 --- a/l10n/id/settings.po +++ b/l10n/id/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email tersimpan" @@ -117,11 +121,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index b70af6b0c3..8d272ad770 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 1ec0daf688..23f0669725 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 05:39+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,6 +41,10 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email salvata" @@ -121,12 +125,16 @@ msgid "execute one task with each page loaded" msgstr "esegui un'attività con ogni pagina caricata" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php è registrato a un servizio webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usa il servizio cron di sistema" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 9652d0d975..e768e4fe2e 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 02:09+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,6 +36,10 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "メールアドレスを保存しました" @@ -116,12 +120,16 @@ msgid "execute one task with each page loaded" msgstr "ページを開く毎にタスクを1つ実行" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.phpをwebcronサービスに登録しました" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "システムのcronサービスを使用" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 74a1df4738..5caaccb275 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "이메일 저장" @@ -116,12 +120,16 @@ msgid "execute one task with each page loaded" msgstr "각 페이지가 로드 된 하나의 작업을 실행" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php는 webcron 서비스에 등록이 되어 있습니다." +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "cron 시스템 서비스를 사용" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index ae12b3db40..8df0495662 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail gespäichert" @@ -115,12 +119,16 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ass als en webcron Service registréiert" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "benotz den systems cron Service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 5db913f5a2..f9f0412202 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "El. paštas išsaugotas" @@ -115,12 +119,16 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "naudoti sistemos cron servisą" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6c04e77d75..54a261a9ff 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Epasts tika saglabāts" @@ -115,11 +119,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6bd27051c3..5f1ffcc6ed 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Електронската пошта е снимена" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 585daefb75..c93a805543 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -38,6 +38,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Emel disimpan" @@ -118,11 +122,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 4b095682b5..85d96230f8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -40,6 +40,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Epost lagret" @@ -120,12 +124,16 @@ msgid "execute one task with each page loaded" msgstr "utfør en oppgave med hver side som blir lastet" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php er registrert som en webcron tjeneste" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "benytt systemets cron tjeneste" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8644b83dc0..8d1c628274 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 13:23+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,6 +42,10 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail bewaard" @@ -122,12 +126,16 @@ msgid "execute one task with each page loaded" msgstr "Voer 1 taak uit bij elke geladen pagina" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php is geregistreerd bij een webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "gebruik de systeem cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 8276d41ed6..40a158192d 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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-postadresse lagra" @@ -116,11 +120,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index fe8e3adeb4..65d98b9c14 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2f0082e002..bac8f89bee 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-12 12:39+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,7 @@ msgstr "Pliki" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Nie udostępniaj" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -94,7 +94,7 @@ msgstr "z" #: js/filelist.js:268 msgid "unshared" -msgstr "" +msgstr "Nie udostępnione" #: js/filelist.js:270 msgid "deleted" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index adfbe39053..1689285d42 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 12:06+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,6 +42,10 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email zapisany" @@ -122,12 +126,16 @@ msgid "execute one task with each page loaded" msgstr "wykonanie jednego zadania z każdej załadowanej strony" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php jest zarejestrowany w usłudze webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "korzystaj z usługi systemowej cron" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 0d57138874..fe2334598d 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 5c7f19c769..3e0941d765 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -40,6 +40,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email gravado" @@ -120,11 +124,15 @@ msgid "execute one task with each page loaded" msgstr "executar uma tarefa com cada página em aberto" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php esta registrado no serviço de webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 05fcf5b8bd..e5e52c51eb 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email guardado" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php está registado num serviço webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usar o serviço cron do sistema" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a1bc80deb8..cf3ece6484 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -39,6 +39,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail salvat" @@ -119,12 +123,16 @@ msgid "execute one task with each page loaded" msgstr "executâ o sarcină cu fiecare pagină încărcată" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php e înregistrat la un serviciu de webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utilizează serviciul de cron al sistemului" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 53b8f54895..9695b338b3 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 01:35+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,6 +43,10 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email сохранен" @@ -123,12 +127,16 @@ msgid "execute one task with each page loaded" msgstr "Запускать задание при загрузке каждой страницы" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php зарегистрирован в службе webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "использовать системные задания" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 441a2de6ae..42d3e4f9da 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-12 13:55+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +20,37 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Ошибка отсутствует, файл загружен успешно." #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Размер загруженного" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Загружаемый файл был загружен частично" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "" +msgstr "Файл не был загружен" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "" +msgstr "Отсутствует временная папка" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "Не удалось записать на диск" #: appinfo/app.php:6 msgid "Files" -msgstr "" +msgstr "Файлы" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" @@ -57,15 +58,15 @@ msgstr "" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" -msgstr "" +msgstr "Удалить" #: js/filelist.js:186 js/filelist.js:188 msgid "already exists" -msgstr "" +msgstr "уже существует" #: js/filelist.js:186 js/filelist.js:188 msgid "replace" -msgstr "" +msgstr "отмена" #: js/filelist.js:186 msgid "suggest name" @@ -73,19 +74,19 @@ msgstr "" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" -msgstr "" +msgstr "отменить" #: js/filelist.js:235 js/filelist.js:237 msgid "replaced" -msgstr "" +msgstr "заменено" #: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 msgid "undo" -msgstr "" +msgstr "отменить действие" #: js/filelist.js:237 msgid "with" -msgstr "" +msgstr "с" #: js/filelist.js:268 msgid "unshared" @@ -93,7 +94,7 @@ msgstr "" #: js/filelist.js:270 msgid "deleted" -msgstr "" +msgstr "удалено" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." @@ -105,7 +106,7 @@ msgstr "" #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Ошибка загрузки" #: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" @@ -113,7 +114,7 @@ msgstr "" #: js/files.js:355 msgid "Upload cancelled." -msgstr "" +msgstr "Загрузка отменена" #: js/files.js:423 msgid "" @@ -122,15 +123,15 @@ msgstr "" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Неправильное имя, '/' не допускается." #: js/files.js:746 templates/index.php:56 msgid "Size" -msgstr "" +msgstr "Размер" #: js/files.js:747 templates/index.php:58 msgid "Modified" -msgstr "" +msgstr "Изменен" #: js/files.js:774 msgid "folder" @@ -150,15 +151,15 @@ msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Работа с файлами" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Максимальный размер загружаемого файла" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "Максимально возможный" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." @@ -178,19 +179,19 @@ msgstr "" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Сохранить" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Новый" #: templates/index.php:9 msgid "Text file" -msgstr "" +msgstr "Текстовый файл" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Папка" #: templates/index.php:11 msgid "From url" @@ -198,19 +199,19 @@ msgstr "" #: templates/index.php:21 msgid "Upload" -msgstr "" +msgstr "Загрузить " #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr "Отмена загрузки" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Здесь ничего нет. Загрузите что-нибудь!" #: templates/index.php:48 msgid "Name" -msgstr "" +msgstr "Имя" #: templates/index.php:50 msgid "Share" @@ -218,17 +219,17 @@ msgstr "" #: templates/index.php:52 msgid "Download" -msgstr "" +msgstr "Загрузить" #: templates/index.php:75 msgid "Upload too large" -msgstr "" +msgstr "Загрузка слишком велика" #: templates/index.php:77 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." #: templates/index.php:82 msgid "Files are being scanned, please wait." @@ -236,4 +237,4 @@ msgstr "" #: templates/index.php:85 msgid "Current scanning" -msgstr "" +msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 210a41b049..410572a6c6 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 952da74548..671b754f2e 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email uložený" @@ -117,11 +121,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index bd1e022b7d..90c2cab7f6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 06:02+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-poštni naslov je bil shranjen" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "izvedi eno nalogo z vsako naloženo stranjo" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je vpisan na storitev webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "uporabi sistemski servis za periodična opravila" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 8ed5f9eb22..102238c5e5 100644 --- a/l10n/so/settings.po +++ b/l10n/so/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index bccf5024d3..fcbed1eb15 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -115,11 +119,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 4e8ca92540..50fee67d49 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -115,11 +119,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f93b1f0f3c..c7b9d78bf6 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 06:05+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,6 +41,10 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-post sparad" @@ -121,12 +125,16 @@ msgid "execute one task with each page loaded" msgstr "utför en uppgift vid varje sidladdning" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php är registrerad på en webcron-tjänst" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "använd systemets cron-tjänst" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 13cf5608b9..c76cabb082 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea363823aa..1345768908 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 02737458e0..506925aa2b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 75f49385fd..54021a4924 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 2eec3ef024..5047c27aee 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 7bc25825f9..ae331dab4f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c1f018d3ec..73dba560d5 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 33da8992be..b8d678f3c2 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -114,11 +118,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 86f79b98fc..9176b673e9 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1919a13b9e..c433f3607b 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:31+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "อีเมลถูกบันทึกแล้ว" @@ -117,12 +121,16 @@ msgid "execute one task with each page loaded" msgstr "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ได้ถูกลงทะเบียนที่บริการ webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "ใช้บริการ cron จากระบบ" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 927817d543..fc8d5aedde 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Eposta kaydedildi" @@ -117,11 +121,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 7a1ef6e3a0..d689c5e88f 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -115,11 +119,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 12a6254703..d9f7c13dab 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 16:01+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,10 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Lưu email" @@ -118,12 +122,16 @@ msgid "execute one task with each page loaded" msgstr "Thực thi một nhiệm vụ với mỗi trang được nạp" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php đã được đăng ký ở một dịch vụ webcron" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "sử dụng hệ thống dịch vụ cron" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 5e3311e021..228e168b8a 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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email 保存了" @@ -115,11 +119,15 @@ msgid "execute one task with each page loaded" msgstr "" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:41 diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c72ea361e0..d0817c5473 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 08:01+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,10 @@ msgstr "已存在组" msgid "Unable to add group" msgstr "不能添加组" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "电子邮件已保存" @@ -118,12 +122,16 @@ msgid "execute one task with each page loaded" msgstr "为每个装入的页面执行任务" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "crop.php 已" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "实现系统 cron 服务" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 64bf08a813..1af9868791 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 15:49+0000\n" -"Last-Translator: Jeff5555 \n" +"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,10 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email已儲存" @@ -118,12 +122,16 @@ msgid "execute one task with each page loaded" msgstr "當頁面載入時,執行" #: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "使用系統定期執行服務" +msgid "" +"use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" #: templates/admin.php:41 msgid "Share API" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 062e9a9734..67b1d77dc7 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", -"cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", -"use systems cron service" => "usa el servei cron del sistema", "Share API" => "API de compartir", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index a68f10269f..6fbac99b37 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", "execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", -"cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron", -"use systems cron service" => "použít systémovou službu cron", "Share API" => "API sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 0c09a25dfd..16b4e11eb9 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -14,8 +14,6 @@ "Security Warning" => "Sikkerhedsadvarsel", "Cron" => "Cron", "execute one task with each page loaded" => "udfør en opgave for hver indlæst side", -"cron.php is registered at a webcron service" => "cron.php er tilmeldt en webcron tjeneste", -"use systems cron service" => "brug systemets cron service", "Share API" => "Del API", "Enable Share API" => "Aktiver dele API", "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 4f3a12934e..ce1ef9c7ea 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", -"cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", -"use systems cron service" => "Nutze System-Cron-Service", "Share API" => "Teilungs-API", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 833ef8e10d..536e72bad6 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -14,8 +14,6 @@ "Security Warning" => "Προειδοποίηση Ασφαλείας", "Cron" => "Cron", "execute one task with each page loaded" => "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται", -"cron.php is registered at a webcron service" => "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία", -"use systems cron service" => "Χρήση της υπηρεσίας cron του συστήματος", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index cb84b2da03..61ac0fac27 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -14,8 +14,6 @@ "Security Warning" => "Sekureca averto", "Cron" => "Cron", "execute one task with each page loaded" => "lanĉi unu taskon po ĉiu paĝo ŝargita", -"cron.php is registered at a webcron service" => "cron.php estas registrita kiel webcron-servilo", -"use systems cron service" => "uzi la cron-servon de la sistemo", "Log" => "Protokolo", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 2f2a06ce05..36561d9aee 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", -"cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", -"use systems cron service" => "usar servicio cron del sistema", "Share API" => "API de compartición", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index ef36dbf951..13924f7548 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -20,8 +20,6 @@ "Security Warning" => "Turvahoiatus", "Cron" => "Ajastatud töö", "execute one task with each page loaded" => "käivita iga laetud lehe juures üks ülesanne", -"cron.php is registered at a webcron service" => "cron.php on webcron teenuses registreeritud", -"use systems cron service" => "kasuta süsteemide cron teenuseid", "Share API" => "Jagamise API", "Enable Share API" => "Luba jagamise API", "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index a30382f030..51e62bc9dd 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", "execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", -"cron.php is registered at a webcron service" => "cron.php webcron zerbitzu batean erregistratuta dago", -"use systems cron service" => "erabili sistemaren cron zerbitzua", "Share API" => "Partekatze APIa", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 54647c2961..edd5465b7d 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", "execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla", -"cron.php is registered at a webcron service" => "cron.php on rekisteröity webcron-palvelulla", -"use systems cron service" => "käytä järjestelmän cron-palvelua", "Share API" => "Jaon ohelmointirajapinta (Share API)", "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 906e80eabb..a1c38d1e79 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", "execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", -"cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", -"use systems cron service" => "utiliser le service cron du système ", "Share API" => "API de partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 52aa13c461..245ef329e8 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -14,8 +14,6 @@ "Security Warning" => "Aviso de seguridade", "Cron" => "Cron", "execute one task with each page loaded" => "executar unha tarefa con cada páxina cargada", -"cron.php is registered at a webcron service" => "cron.php está rexistrada como un servizo webcron", -"use systems cron service" => "utilice o servizo cron do sistema", "Log" => "Conectar", "More" => "Máis", "Add your App" => "Engade o teu aplicativo", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 8c5251520c..de540cb50f 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -12,8 +12,6 @@ "Saving..." => "Spremanje...", "__language_name__" => "__ime_jezika__", "Cron" => "Cron", -"cron.php is registered at a webcron service" => "cron.php je registriran kod webcron servisa", -"use systems cron service" => "koristi sistemski cron servis", "Log" => "dnevnik", "More" => "više", "Add your App" => "Dodajte vašu aplikaciju", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 695ed31eee..e8728f6a1c 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", -"cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", -"use systems cron service" => "usa il servizio cron di sistema", "Share API" => "API di condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index fe1eed1980..88c8b4c81c 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", "execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", -"cron.php is registered at a webcron service" => "cron.phpをwebcronサービスに登録しました", -"use systems cron service" => "システムのcronサービスを使用", "Share API" => "Share API", "Enable Share API" => "Share APIを有効", "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index ada09c845c..0ff261c929 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -14,8 +14,6 @@ "Security Warning" => "보안 경고", "Cron" => "크론", "execute one task with each page loaded" => "각 페이지가 로드 된 하나의 작업을 실행", -"cron.php is registered at a webcron service" => "cron.php는 webcron 서비스에 등록이 되어 있습니다.", -"use systems cron service" => "cron 시스템 서비스를 사용", "Log" => "로그", "More" => "더", "Add your App" => "앱 추가", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 55db067f8c..5728299d0d 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,8 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sécherheets Warnung", "Cron" => "Cron", -"cron.php is registered at a webcron service" => "cron.php ass als en webcron Service registréiert", -"use systems cron service" => "benotz den systems cron Service", "Share API" => "Share API", "Enable Share API" => "Share API aschalten", "Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 701ec86727..169892d6b2 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -12,7 +12,6 @@ "__language_name__" => "Kalba", "Security Warning" => "Saugumo įspėjimas", "Cron" => "Cron", -"use systems cron service" => "naudoti sistemos cron servisą", "Log" => "Žurnalas", "More" => "Daugiau", "Add your App" => "Pridėti programėlę", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 57c1881352..183406d0b0 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -14,8 +14,6 @@ "Security Warning" => "Sikkerhetsadvarsel", "Cron" => "Cron", "execute one task with each page loaded" => "utfør en oppgave med hver side som blir lastet", -"cron.php is registered at a webcron service" => "cron.php er registrert som en webcron tjeneste", -"use systems cron service" => "benytt systemets cron tjeneste", "Log" => "Logg", "More" => "Mer", "Add your App" => "Legg til din App", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 8ac7b58a4c..a942d51912 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", "execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina", -"cron.php is registered at a webcron service" => "cron.php is geregistreerd bij een webcron service", -"use systems cron service" => "gebruik de systeem cron service", "Share API" => "Deel API", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 851099ef6b..ba6a36f28f 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", -"cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", -"use systems cron service" => "korzystaj z usługi systemowej cron", "Share API" => "Udostępnij API", "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6933e58554..9bd4923e3c 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -12,7 +12,6 @@ "__language_name__" => "Português", "Security Warning" => "Aviso de Segurança", "execute one task with each page loaded" => "executar uma tarefa com cada página em aberto", -"cron.php is registered at a webcron service" => "cron.php esta registrado no serviço de webcron", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione seu Aplicativo", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index bf939df4ae..98eb41b15e 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -14,8 +14,6 @@ "Security Warning" => "Aviso de Segurança", "Cron" => "Cron", "execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", -"cron.php is registered at a webcron service" => "cron.php está registado num serviço webcron", -"use systems cron service" => "usar o serviço cron do sistema", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione a sua aplicação", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index c82cdaab2a..a41e7bc06c 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -14,8 +14,6 @@ "Security Warning" => "Avertisment de securitate", "Cron" => "Cron", "execute one task with each page loaded" => "executâ o sarcină cu fiecare pagină încărcată", -"cron.php is registered at a webcron service" => "cron.php e înregistrat la un serviciu de webcron", -"use systems cron service" => "utilizează serviciul de cron al sistemului", "Log" => "Jurnal de activitate", "More" => "Mai mult", "Add your App" => "Adaugă aplicația ta", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 4e0a7e7d78..f8e70b391c 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что каталог data и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.", "Cron" => "Задание", "execute one task with each page loaded" => "Запускать задание при загрузке каждой страницы", -"cron.php is registered at a webcron service" => "cron.php зарегистрирован в службе webcron", -"use systems cron service" => "использовать системные задания", "Share API" => "API публикации", "Enable Share API" => "Включить API публикации", "Allow apps to use the Share API" => "Разрешить API публикации для приложений", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 7b5c6bee3c..cc8690878d 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", -"cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", -"use systems cron service" => "uporabi sistemski servis za periodična opravila", "Share API" => "API souporabe", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 1a18e9670d..dab31f8001 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", -"cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", -"use systems cron service" => "använd systemets cron-tjänst", "Share API" => "Delat API", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index d775af7671..61b2eb940d 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", -"cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", -"use systems cron service" => "ใช้บริการ cron จากระบบ", "Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index c410bb4c3d..d1d7e0c433 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", "execute one task with each page loaded" => "Thực thi một nhiệm vụ với mỗi trang được nạp", -"cron.php is registered at a webcron service" => "cron.php đã được đăng ký ở một dịch vụ webcron", -"use systems cron service" => "sử dụng hệ thống dịch vụ cron", "Share API" => "Chia sẻ API", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 7927cec61c..07f361d3b6 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,8 +21,6 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", "execute one task with each page loaded" => "为每个装入的页面执行任务", -"cron.php is registered at a webcron service" => "crop.php 已", -"use systems cron service" => "实现系统 cron 服务", "Share API" => "共享API", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 4f72c8398b..0abeb6e285 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -20,7 +20,6 @@ "Security Warning" => "安全性警告", "Cron" => "定期執行", "execute one task with each page loaded" => "當頁面載入時,執行", -"use systems cron service" => "使用系統定期執行服務", "Allow links" => "允許連結", "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow resharing" => "允許轉貼分享", From f8d907df71d62627a9e5ee764593d7b27803d33a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 12 Sep 2012 21:29:55 -0400 Subject: [PATCH 10/41] Set configured to true after configuring Dropbox storage --- apps/files_external/js/dropbox.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/js/dropbox.js b/apps/files_external/js/dropbox.js index dd3a1cb185..6082fdd2cb 100644 --- a/apps/files_external/js/dropbox.js +++ b/apps/files_external/js/dropbox.js @@ -19,6 +19,7 @@ $(document).ready(function() { if (result && result.status == 'success') { $(token).val(result.access_token); $(token_secret).val(result.access_token_secret); + $(configured).val('true'); OC.MountConfig.saveStorage(tr); $(tr).find('.configuration input').attr('disabled', 'disabled'); $(tr).find('.configuration').append('Access granted'); From 5a149dcfab960fe21c2df1bf4f1ba27f1a10b2c8 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Thu, 13 Sep 2012 11:39:26 +0200 Subject: [PATCH 11/41] mark as an updated beta 3 with some more fixes --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index c2edc660e8..b66d5426a6 100755 --- a/lib/util.php +++ b/lib/util.php @@ -89,7 +89,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '4.5 beta 3'; + return '4.5 beta 3a'; } /** From fdecee1bda0641eb0d1f215663a60a4ad559a6b8 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 13 Sep 2012 17:30:26 +0200 Subject: [PATCH 12/41] Check if categories is an array. --- lib/vcategories.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/vcategories.php b/lib/vcategories.php index f5123adeeb..6b1d6a316f 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -55,7 +55,10 @@ class OC_VCategories { $this->app = $app; $this->user = is_null($user) ? OC_User::getUser() : $user; $categories = trim(OC_Preferences::getValue($this->user, $app, self::PREF_CATEGORIES_LABEL, '')); - $this->categories = $categories != '' ? @unserialize($categories) : $defcategories; + if ($categories) { + $categories = @unserialize($categories); + } + $this->categories = is_array($categories) ? $categories : $defcategories; } /** From e41ccd4344db20c13a1a2260134af052f7aedd9a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 14 Sep 2012 02:03:18 +0200 Subject: [PATCH 13/41] [tx-robot] updated from transifex --- apps/files/l10n/da.php | 4 + apps/files/l10n/ru_RU.php | 18 ++++ apps/files_encryption/l10n/da.php | 6 ++ apps/files_sharing/l10n/da.php | 7 ++ apps/files_versions/l10n/da.php | 6 ++ core/l10n/ru_RU.php | 64 +++++++++++ l10n/ca/settings.po | 12 +-- l10n/cs_CZ/settings.po | 12 +-- l10n/da/files.po | 15 +-- l10n/da/files_encryption.po | 17 +-- l10n/da/files_sharing.po | 21 ++-- l10n/da/files_versions.po | 17 +-- l10n/da/lib.po | 45 ++++---- l10n/eu/settings.po | 12 +-- l10n/fi_FI/settings.po | 8 +- l10n/it/settings.po | 12 +-- l10n/ja_JP/settings.po | 12 +-- l10n/nl/settings.po | 12 +-- l10n/ru_RU/core.po | 161 ++++++++++++++-------------- l10n/ru_RU/files.po | 40 +++---- l10n/ru_RU/settings.po | 89 +++++++-------- l10n/sl/settings.po | 12 +-- l10n/sv/settings.po | 12 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/settings.po | 12 +-- lib/l10n/da.php | 4 +- settings/l10n/ca.php | 3 + settings/l10n/cs_CZ.php | 3 + settings/l10n/eu.php | 3 + settings/l10n/fi_FI.php | 1 + settings/l10n/it.php | 3 + settings/l10n/ja_JP.php | 3 + settings/l10n/nl.php | 3 + settings/l10n/ru_RU.php | 43 ++++++++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 3 + settings/l10n/th_TH.php | 3 + 45 files changed, 452 insertions(+), 267 deletions(-) create mode 100644 apps/files_encryption/l10n/da.php create mode 100644 apps/files_sharing/l10n/da.php create mode 100644 apps/files_versions/l10n/da.php create mode 100644 core/l10n/ru_RU.php create mode 100644 settings/l10n/ru_RU.php diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 020f6142ec..de0df6a26f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -7,13 +7,16 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Files" => "Filer", +"Unshare" => "Fjern deling", "Delete" => "Slet", "already exists" => "findes allerede", "replace" => "erstat", +"suggest name" => "foreslå navn", "cancel" => "fortryd", "replaced" => "erstattet", "undo" => "fortryd", "with" => "med", +"unshared" => "udelt", "deleted" => "Slettet", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", @@ -35,6 +38,7 @@ "Enable ZIP-download" => "Muliggør ZIP-download", "0 is unlimited" => "0 er ubegrænset", "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", +"Save" => "Gem", "New" => "Ny", "Text file" => "Tekstfil", "Folder" => "Mappe", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index d272d9580d..f43959d4e9 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -7,32 +7,50 @@ "Missing a temporary folder" => "Отсутствует временная папка", "Failed to write to disk" => "Не удалось записать на диск", "Files" => "Файлы", +"Unshare" => "Скрыть", "Delete" => "Удалить", "already exists" => "уже существует", "replace" => "отмена", +"suggest name" => "подобрать название", "cancel" => "отменить", "replaced" => "заменено", "undo" => "отменить действие", "with" => "с", +"unshared" => "скрытый", "deleted" => "удалено", +"generating ZIP-file, it may take some time." => "Создание ZIP-файла, это может занять некоторое время.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией", "Upload Error" => "Ошибка загрузки", +"Pending" => "Ожидающий решения", "Upload cancelled." => "Загрузка отменена", +"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", "Size" => "Размер", "Modified" => "Изменен", +"folder" => "папка", +"folders" => "папки", +"file" => "файл", +"files" => "файлы", "File handling" => "Работа с файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "Максимально возможный", +"Needed for multi-file and folder downloads." => "Необходимо для множественной загрузки.", +"Enable ZIP-download" => "Включение ZIP-загрузки", +"0 is unlimited" => "0 без ограничений", +"Maximum input size for ZIP files" => "Максимальный размер входящих ZIP-файлов ", "Save" => "Сохранить", "New" => "Новый", "Text file" => "Текстовый файл", "Folder" => "Папка", +"From url" => "Из url", "Upload" => "Загрузить ", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Name" => "Имя", +"Share" => "Сделать общим", "Download" => "Загрузить", "Upload too large" => "Загрузка слишком велика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер.", +"Files are being scanned, please wait." => "Файлы сканируются, пожалуйста, подождите.", "Current scanning" => "Текущее сканирование" ); diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php new file mode 100644 index 0000000000..144c9f9708 --- /dev/null +++ b/apps/files_encryption/l10n/da.php @@ -0,0 +1,6 @@ + "Kryptering", +"Exclude the following file types from encryption" => "Ekskluder følgende filtyper fra kryptering", +"None" => "Ingen", +"Enable Encryption" => "Aktivér kryptering" +); diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php new file mode 100644 index 0000000000..1fd9f774a9 --- /dev/null +++ b/apps/files_sharing/l10n/da.php @@ -0,0 +1,7 @@ + "Kodeord", +"Submit" => "Send", +"Download" => "Download", +"No preview available for" => "Forhåndsvisning ikke tilgængelig for", +"web services under your control" => "Webtjenester under din kontrol" +); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php new file mode 100644 index 0000000000..9fafef99fe --- /dev/null +++ b/apps/files_versions/l10n/da.php @@ -0,0 +1,6 @@ + "Lad alle versioner udløbe", +"Versions" => "Versioner", +"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer", +"Enable Files Versioning" => "Aktiver filversionering" +); diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php new file mode 100644 index 0000000000..190ecda9eb --- /dev/null +++ b/core/l10n/ru_RU.php @@ -0,0 +1,64 @@ + "Имя приложения не предоставлено.", +"No category to add?" => "Нет категории для добавления?", +"This category already exists: " => "Эта категория уже существует:", +"Settings" => "Настройки", +"January" => "Январь", +"February" => "Февраль", +"March" => "Март", +"April" => "Апрель", +"May" => "Май", +"June" => "Июнь", +"July" => "Июль", +"August" => "Август", +"September" => "Сентябрь", +"October" => "Октябрь", +"November" => "Ноябрь", +"December" => "Декабрь", +"Cancel" => "Отмена", +"No" => "Нет", +"Yes" => "Да", +"Ok" => "Да", +"No categories selected for deletion." => "Нет категорий, выбранных для удаления.", +"Error" => "Ошибка", +"ownCloud password reset" => "Переназначение пароля", +"Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}", +"You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.", +"Requested" => "Запрашиваемое", +"Login failed!" => "Войти не удалось!", +"Username" => "Имя пользователя", +"Request reset" => "Сброс запроса", +"Your password was reset" => "Ваш пароль был переустановлен", +"To login page" => "На страницу входа", +"New password" => "Новый пароль", +"Reset password" => "Переназначение пароля", +"Personal" => "Персональный", +"Users" => "Пользователи", +"Apps" => "Приложения", +"Admin" => "Администратор", +"Help" => "Помощь", +"Access forbidden" => "Доступ запрещен", +"Cloud not found" => "Облако не найдено", +"Edit categories" => "Редактирование категорий", +"Add" => "Добавить", +"Create an admin account" => "Создать admin account", +"Password" => "Пароль", +"Advanced" => "Расширенный", +"Data folder" => "Папка данных", +"Configure the database" => "Настроить базу данных", +"will be used" => "будет использоваться", +"Database user" => "Пользователь базы данных", +"Database password" => "Пароль базы данных", +"Database name" => "Имя базы данных", +"Database tablespace" => "Табличная область базы данных", +"Database host" => "Сервер базы данных", +"Finish setup" => "Завершение настройки", +"web services under your control" => "веб-сервисы под Вашим контролем", +"Log out" => "Выйти", +"Lost your password?" => "Забыли пароль?", +"remember" => "запомнить", +"Log in" => "Войти", +"You are logged out." => "Вы вышли из системы.", +"prev" => "предыдущий", +"next" => "следующий" +); diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 0aea78aa04..e444e33521 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 07:48+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" @@ -39,7 +39,7 @@ msgstr "No es pot afegir el grup" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "No s'ha pogut activar l'apliació" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -124,13 +124,13 @@ msgstr "executa una tasca en carregar cada pàgina" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "usa el servei cron del sistema. Feu una crida al fitxer cron.php a la carpeta ownCloud cada minut mitjançant el cronjob del sistema." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index f57fe29fdc..0687294ecd 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 11:25+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,7 @@ msgstr "Nelze přidat skupinu" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Nelze povolit aplikaci." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -127,13 +127,13 @@ msgstr "spustit jednu úlohu s každou načtenou stránkou" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "použít službu cron systému. Zavolá soubor cron.php v kořenovém adresáři owncloud každou minutu skrze systémový úkol cronu." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/da/files.po b/l10n/da/files.po index c2e2ab70ee..98943475b5 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -4,6 +4,7 @@ # # Translators: # Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. +# , 2012. # Pascal d'Hermilly , 2011. # , 2012. # Thomas Tanghus <>, 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:23+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +59,7 @@ msgstr "Filer" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Fjern deling" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -74,7 +75,7 @@ msgstr "erstat" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "foreslå navn" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -94,7 +95,7 @@ msgstr "med" #: js/filelist.js:268 msgid "unshared" -msgstr "" +msgstr "udelt" #: js/filelist.js:270 msgid "deleted" @@ -183,7 +184,7 @@ msgstr "Maksimal størrelse på ZIP filer" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Gem" #: templates/index.php:7 msgid "New" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 94a4333bd1..bd1c986451 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:42+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Kryptering" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Ekskluder følgende filtyper fra kryptering" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Ingen" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Aktivér kryptering" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index cae9bfa4d9..d67a3ef190 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:35+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Kodeord" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Send" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Download" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 667b5eef55..af17e9c5b5 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:38+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "Lad alle versioner udløbe" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dette vil slette alle eksisterende backupversioner af dine filer" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "Aktiver filversionering" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 75cf36398b..e9b14de3e5 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -4,41 +4,42 @@ # # Translators: # Morten Juhl-Johansen Zölde-Fejér , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:43+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hjælp" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Personlig" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Indstillinger" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Brugere" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Admin" @@ -70,56 +71,56 @@ msgstr "Adgangsfejl" msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 minut siden" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "I dag" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "I går" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d dage siden" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Sidste måned" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "måneder siden" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Sidste år" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "år siden" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s er tilgængelig. Få mere information" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "opdateret" #: updater.php:71 msgid "updates check is disabled" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index be8c78b68d..76be611dba 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 15:27+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Ezin izan da taldea gehitu" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Ezin izan da aplikazioa gaitu." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -124,13 +124,13 @@ msgstr "exekutatu zeregina orri karga bakoitzean" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 8831474047..ab312d2d97 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 10:57+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Ryhmän lisäys epäonnistui" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Sovelluksen käyttöönotto epäonnistui." #: ajax/lostpassword.php:14 msgid "Email saved" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 23f0669725..67345083db 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 05:39+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +43,7 @@ msgstr "Impossibile aggiungere il gruppo" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Impossibile abilitare l'applicazione." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -128,13 +128,13 @@ msgstr "esegui un'attività con ogni pagina caricata" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud ogni minuto." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e768e4fe2e..c6680acbbf 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 16:13+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,7 @@ msgstr "グループを追加できません" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "アプリを有効にできませんでした。" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -123,13 +123,13 @@ msgstr "ページを開く毎にタスクを1つ実行" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。" #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "システムの cron サービスを利用します。システムの cron ジョブを通して1分間に1回の頻度で owncloud 内の cron.php ファイルを呼び出します。" #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8d1c628274..cd07c25ca8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 18:45+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgstr "Niet in staat om groep toe te voegen" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Kan de app. niet activeren" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -129,13 +129,13 @@ msgstr "Voer 1 taak uit bij elke geladen pagina" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Gebruik de systeem cron functionaliteit. Roep het cron.php bestand via een systeem cronjob één maal per minuut op." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 6c4aeee5d5..be63870a07 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 12:09+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,250 +20,250 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "" +msgstr "Имя приложения не предоставлено." #: ajax/vcategories/add.php:29 msgid "No category to add?" -msgstr "" +msgstr "Нет категории для добавления?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "" +msgstr "Эта категория уже существует:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" -msgstr "" +msgstr "Настройки" -#: js/js.js:593 +#: js/js.js:642 msgid "January" -msgstr "" +msgstr "Январь" -#: js/js.js:593 +#: js/js.js:642 msgid "February" -msgstr "" +msgstr "Февраль" -#: js/js.js:593 +#: js/js.js:642 msgid "March" -msgstr "" +msgstr "Март" -#: js/js.js:593 +#: js/js.js:642 msgid "April" -msgstr "" +msgstr "Апрель" -#: js/js.js:593 +#: js/js.js:642 msgid "May" -msgstr "" +msgstr "Май" -#: js/js.js:593 +#: js/js.js:642 msgid "June" -msgstr "" +msgstr "Июнь" -#: js/js.js:594 +#: js/js.js:643 msgid "July" -msgstr "" +msgstr "Июль" -#: js/js.js:594 +#: js/js.js:643 msgid "August" -msgstr "" +msgstr "Август" -#: js/js.js:594 +#: js/js.js:643 msgid "September" -msgstr "" +msgstr "Сентябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "October" -msgstr "" +msgstr "Октябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "November" -msgstr "" +msgstr "Ноябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "December" -msgstr "" +msgstr "Декабрь" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Отмена" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Нет" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Да" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Да" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Нет категорий, выбранных для удаления." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Ошибка" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "" +msgstr "Переназначение пароля" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Вы получите ссылку для восстановления пароля по электронной почте." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" -msgstr "" +msgstr "Запрашиваемое" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "" +msgstr "Войти не удалось!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: lostpassword/templates/lostpassword.php:15 msgid "Request reset" -msgstr "" +msgstr "Сброс запроса" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Ваш пароль был переустановлен" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "На страницу входа" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Новый пароль" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Переназначение пароля" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Персональный" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Пользователи" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Приложения" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Администратор" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Помощь" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Доступ запрещен" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "Облако не найдено" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Редактирование категорий" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "Добавить" #: templates/installation.php:24 msgid "Create an admin account" -msgstr "" +msgstr "Создать admin account" #: templates/installation.php:30 templates/login.php:13 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/installation.php:36 msgid "Advanced" -msgstr "" +msgstr "Расширенный" #: templates/installation.php:38 msgid "Data folder" -msgstr "" +msgstr "Папка данных" #: templates/installation.php:45 msgid "Configure the database" -msgstr "" +msgstr "Настроить базу данных" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "" +msgstr "будет использоваться" #: templates/installation.php:93 msgid "Database user" -msgstr "" +msgstr "Пользователь базы данных" #: templates/installation.php:97 msgid "Database password" -msgstr "" +msgstr "Пароль базы данных" #: templates/installation.php:101 msgid "Database name" -msgstr "" +msgstr "Имя базы данных" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Табличная область базы данных" #: templates/installation.php:115 msgid "Database host" -msgstr "" +msgstr "Сервер базы данных" #: templates/installation.php:120 msgid "Finish setup" -msgstr "" +msgstr "Завершение настройки" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под Вашим контролем" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" -msgstr "" +msgstr "Выйти" #: templates/login.php:6 msgid "Lost your password?" -msgstr "" +msgstr "Забыли пароль?" #: templates/login.php:17 msgid "remember" -msgstr "" +msgstr "запомнить" #: templates/login.php:18 msgid "Log in" -msgstr "" +msgstr "Войти" #: templates/logout.php:1 msgid "You are logged out." -msgstr "" +msgstr "Вы вышли из системы." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "предыдущий" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "следующий" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 42d3e4f9da..a3844380e8 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 13:55+0000\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 10:17+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Файлы" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Скрыть" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -70,7 +70,7 @@ msgstr "отмена" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "подобрать название" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -90,7 +90,7 @@ msgstr "с" #: js/filelist.js:268 msgid "unshared" -msgstr "" +msgstr "скрытый" #: js/filelist.js:270 msgid "deleted" @@ -98,11 +98,11 @@ msgstr "удалено" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Создание ZIP-файла, это может занять некоторое время." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" #: js/files.js:208 msgid "Upload Error" @@ -110,7 +110,7 @@ msgstr "Ошибка загрузки" #: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" -msgstr "" +msgstr "Ожидающий решения" #: js/files.js:355 msgid "Upload cancelled." @@ -119,7 +119,7 @@ msgstr "Загрузка отменена" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." #: js/files.js:493 msgid "Invalid name, '/' is not allowed." @@ -135,19 +135,19 @@ msgstr "Изменен" #: js/files.js:774 msgid "folder" -msgstr "" +msgstr "папка" #: js/files.js:776 msgid "folders" -msgstr "" +msgstr "папки" #: js/files.js:784 msgid "file" -msgstr "" +msgstr "файл" #: js/files.js:786 msgid "files" -msgstr "" +msgstr "файлы" #: templates/admin.php:5 msgid "File handling" @@ -163,19 +163,19 @@ msgstr "Максимально возможный" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Необходимо для множественной загрузки." #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Включение ZIP-загрузки" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 без ограничений" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Максимальный размер входящих ZIP-файлов " #: templates/admin.php:14 msgid "Save" @@ -195,7 +195,7 @@ msgstr "Папка" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "Из url" #: templates/index.php:21 msgid "Upload" @@ -215,7 +215,7 @@ msgstr "Имя" #: templates/index.php:50 msgid "Share" -msgstr "" +msgstr "Сделать общим" #: templates/index.php:52 msgid "Download" @@ -233,7 +233,7 @@ msgstr "Размер файлов, которые Вы пытаетесь заг #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Файлы сканируются, пожалуйста, подождите." #: templates/index.php:85 msgid "Current scanning" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 410572a6c6..ffe82247eb 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 13:05+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +25,11 @@ msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "" +msgstr "Ошибка авторизации" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Группа уже существует" #: ajax/creategroup.php:28 msgid "Unable to add group" @@ -48,11 +49,11 @@ msgstr "" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID изменен" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "" +msgstr "Неверный запрос" #: ajax/removegroup.php:16 msgid "Unable to delete group" @@ -64,7 +65,7 @@ msgstr "" #: ajax/setlanguage.php:18 msgid "Language changed" -msgstr "" +msgstr "Язык изменен" #: ajax/togglegroups.php:25 #, php-format @@ -78,19 +79,19 @@ msgstr "" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Ошибка" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "Отключить" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Включить" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Сохранение" #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -98,7 +99,7 @@ msgstr "" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Предупреждение системы безопасности" #: templates/admin.php:17 msgid "" @@ -111,7 +112,7 @@ msgstr "" #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" @@ -131,7 +132,7 @@ msgstr "" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Сделать общим API" #: templates/admin.php:46 msgid "Enable Share API" @@ -143,7 +144,7 @@ msgstr "" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Предоставить ссылки" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" @@ -171,7 +172,7 @@ msgstr "" #: templates/admin.php:97 msgid "More" -msgstr "" +msgstr "Подробнее" #: templates/admin.php:105 msgid "" @@ -185,11 +186,11 @@ msgstr "" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Добавить Ваше приложение" #: templates/apps.php:26 msgid "Select an App" -msgstr "" +msgstr "Выбрать приложение" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" @@ -201,7 +202,7 @@ msgstr "" #: templates/help.php:9 msgid "Documentation" -msgstr "" +msgstr "Документация" #: templates/help.php:10 msgid "Managing Big Files" @@ -209,7 +210,7 @@ msgstr "" #: templates/help.php:11 msgid "Ask a question" -msgstr "" +msgstr "Задать вопрос" #: templates/help.php:23 msgid "Problems connecting to help database." @@ -217,19 +218,19 @@ msgstr "" #: templates/help.php:24 msgid "Go there manually." -msgstr "" +msgstr "Сделать вручную." #: templates/help.php:32 msgid "Answer" -msgstr "" +msgstr "Ответ" #: templates/personal.php:8 msgid "You use" -msgstr "" +msgstr "Вы используете" #: templates/personal.php:8 msgid "of the available" -msgstr "" +msgstr "из доступных" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -237,71 +238,71 @@ msgstr "" #: templates/personal.php:13 msgid "Download" -msgstr "" +msgstr "Загрузка" #: templates/personal.php:19 msgid "Your password got changed" -msgstr "" +msgstr "Ваш пароль был изменен" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "" +msgstr "Невозможно изменить Ваш пароль" #: templates/personal.php:21 msgid "Current password" -msgstr "" +msgstr "Текущий пароль" #: templates/personal.php:22 msgid "New password" -msgstr "" +msgstr "Новый пароль" #: templates/personal.php:23 msgid "show" -msgstr "" +msgstr "показать" #: templates/personal.php:24 msgid "Change password" -msgstr "" +msgstr "Изменить пароль" #: templates/personal.php:30 msgid "Email" -msgstr "" +msgstr "Электронная почта" #: templates/personal.php:31 msgid "Your email address" -msgstr "" +msgstr "Адрес Вашей электронной почты" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Введите адрес электронной почты для возможности восстановления пароля" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" -msgstr "" +msgstr "Язык" #: templates/personal.php:44 msgid "Help translate" -msgstr "" +msgstr "Помогите перевести" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере" #: templates/users.php:21 templates/users.php:76 msgid "Name" -msgstr "" +msgstr "Имя" #: templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" -msgstr "" +msgstr "Группы" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "Создать" #: templates/users.php:35 msgid "Default Quota" @@ -317,8 +318,8 @@ msgstr "" #: templates/users.php:82 msgid "Quota" -msgstr "" +msgstr "квота" #: templates/users.php:146 msgid "Delete" -msgstr "" +msgstr "Удалить" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 90c2cab7f6..513f7dad7e 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:09+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Ni mogoče dodati skupine" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Aplikacije ni bilo mogoče omogočiti." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -124,13 +124,13 @@ msgstr "izvedi eno nalogo z vsako naloženo stranjo" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "Datoteka cron.php je prijavljena pri enem od spletnih cron servisov. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Uporabi sistemski cron servis. Preko sistemskega cron servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index c7b9d78bf6..8ba6e19927 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 06:17+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +43,7 @@ msgstr "Kan inte lägga till grupp" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "Kunde inte aktivera appen." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -128,13 +128,13 @@ msgstr "utför en uppgift vid varje sidladdning" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "använd systementjänsten cron. Anropa cron.php filen i ownCloud mappen via ett system cronjobb en gång i minuten." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index c76cabb082..f973f30be7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1345768908..a5194fb6ff 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 506925aa2b..3106c773b4 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 54021a4924..ff8bb7b521 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5047c27aee..d714556ebf 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index ae331dab4f..6912df5589 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 73dba560d5..c468e17a21 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b8d678f3c2..263fdf4f4a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9176b673e9..4db3258de1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index c433f3607b..bf259cec40 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 17:04+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "ไม่สามารถเพิ่มกลุ่มได้" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "ไม่สามารถเปิดใช้งานแอปได้" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -124,13 +124,13 @@ msgstr "ประมวลผลหนึ่งงานเมื่อโหล msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ที่อยู่ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" #: templates/admin.php:41 msgid "Share API" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 7a9ee26b47..5c68174fa0 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -21,5 +21,7 @@ "last month" => "Sidste måned", "months ago" => "måneder siden", "last year" => "Sidste år", -"years ago" => "år siden" +"years ago" => "år siden", +"%s is available. Get more information" => "%s er tilgængelig. Få mere information", +"up to date" => "opdateret" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 67b1d77dc7..b9c171084a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -3,6 +3,7 @@ "Authentication error" => "Error d'autenticació", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", +"Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "usa el servei cron del sistema. Feu una crida al fitxer cron.php a la carpeta ownCloud cada minut mitjançant el cronjob del sistema.", "Share API" => "API de compartir", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 6fbac99b37..eb7aac5224 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -3,6 +3,7 @@ "Authentication error" => "Chyba ověření", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "OpenID Changed" => "OpenID změněno", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", "execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "použít službu cron systému. Zavolá soubor cron.php v kořenovém adresáři owncloud každou minutu skrze systémový úkol cronu.", "Share API" => "API sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 51e62bc9dd..81d6494507 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -3,6 +3,7 @@ "Authentication error" => "Autentifikazio errorea", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", +"Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "OpenID Changed" => "OpenID aldatuta", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", "execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez.", "Share API" => "Partekatze APIa", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index edd5465b7d..bb3953794c 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -3,6 +3,7 @@ "Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", +"Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index e8728f6a1c..3728ea72da 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -3,6 +3,7 @@ "Authentication error" => "Errore di autenticazione", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", +"Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud ogni minuto.", "Share API" => "API di condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 88c8b4c81c..9219e80809 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -3,6 +3,7 @@ "Authentication error" => "認証エラー", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", +"Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", "execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムの cron サービスを利用します。システムの cron ジョブを通して1分間に1回の頻度で owncloud 内の cron.php ファイルを呼び出します。", "Share API" => "Share API", "Enable Share API" => "Share APIを有効", "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index a942d51912..f350f8295e 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -3,6 +3,7 @@ "Authentication error" => "Authenticatie fout", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", +"Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", "execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gebruik de systeem cron functionaliteit. Roep het cron.php bestand via een systeem cronjob één maal per minuut op.", "Share API" => "Deel API", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php new file mode 100644 index 0000000000..1ae8301064 --- /dev/null +++ b/settings/l10n/ru_RU.php @@ -0,0 +1,43 @@ + "Ошибка авторизации", +"Group already exists" => "Группа уже существует", +"OpenID Changed" => "OpenID изменен", +"Invalid request" => "Неверный запрос", +"Language changed" => "Язык изменен", +"Error" => "Ошибка", +"Disable" => "Отключить", +"Enable" => "Включить", +"Saving..." => "Сохранение", +"Security Warning" => "Предупреждение системы безопасности", +"Cron" => "Cron", +"Share API" => "Сделать общим API", +"Allow links" => "Предоставить ссылки", +"More" => "Подробнее", +"Add your App" => "Добавить Ваше приложение", +"Select an App" => "Выбрать приложение", +"Documentation" => "Документация", +"Ask a question" => "Задать вопрос", +"Go there manually." => "Сделать вручную.", +"Answer" => "Ответ", +"You use" => "Вы используете", +"of the available" => "из доступных", +"Download" => "Загрузка", +"Your password got changed" => "Ваш пароль был изменен", +"Unable to change your password" => "Невозможно изменить Ваш пароль", +"Current password" => "Текущий пароль", +"New password" => "Новый пароль", +"show" => "показать", +"Change password" => "Изменить пароль", +"Email" => "Электронная почта", +"Your email address" => "Адрес Вашей электронной почты", +"Fill in an email address to enable password recovery" => "Введите адрес электронной почты для возможности восстановления пароля", +"Language" => "Язык", +"Help translate" => "Помогите перевести", +"use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере", +"Name" => "Имя", +"Password" => "Пароль", +"Groups" => "Группы", +"Create" => "Создать", +"Quota" => "квота", +"Delete" => "Удалить" +); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index cc8690878d..d9454147f5 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -3,6 +3,7 @@ "Authentication error" => "Napaka overitve", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", +"Could not enable app. " => "Aplikacije ni bilo mogoče omogočiti.", "Email saved" => "E-poštni naslov je bil shranjen", "Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih cron servisov. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski cron servis. Preko sistemskega cron servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", "Share API" => "API souporabe", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index dab31f8001..542fcf6914 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -3,6 +3,7 @@ "Authentication error" => "Autentiseringsfel", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", +"Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "använd systementjänsten cron. Anropa cron.php filen i ownCloud mappen via ett system cronjobb en gång i minuten.", "Share API" => "Delat API", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 61b2eb940d..02f9a284ac 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -3,6 +3,7 @@ "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", "Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", +"Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ที่อยู่ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", "Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", From fbdefd5601696f622d5f17b0b1a562db17a83e37 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 15 Sep 2012 02:05:52 +0200 Subject: [PATCH 14/41] [tx-robot] updated from transifex --- apps/files/l10n/he.php | 1 + l10n/de/settings.po | 13 ++++---- l10n/he/files.po | 9 +++--- l10n/ru_RU/settings.po | 38 +++++++++++------------ l10n/sl/lib.po | 48 ++++++++++++++--------------- l10n/sl/settings.po | 12 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/l10n/sl.php | 6 ++-- settings/l10n/de.php | 3 ++ settings/l10n/ru_RU.php | 17 ++++++++++ settings/l10n/sl.php | 8 ++--- 19 files changed, 98 insertions(+), 75 deletions(-) diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 65d093e366..e7ab4a524b 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -8,6 +8,7 @@ "Failed to write to disk" => "הכתיבה לכונן נכשלה", "Files" => "קבצים", "Delete" => "מחיקה", +"already exists" => "כבר קיים", "generating ZIP-file, it may take some time." => "יוצר קובץ ZIP, אנא המתן.", "Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים", "Upload Error" => "שגיאת העלאה", diff --git a/l10n/de/settings.po b/l10n/de/settings.po index c6825198ff..8468da12f5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -7,6 +7,7 @@ # , 2012. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# Jan T , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-15 02:03+0200\n" +"PO-Revision-Date: 2012-09-14 10:09+0000\n" +"Last-Translator: Jan T \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +47,7 @@ msgstr "Gruppe konnte nicht angelegt werden" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "App konnte nicht aktiviert werden." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -131,13 +132,13 @@ msgstr "Führe eine Aufgabe pro geladener Seite aus." msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root eine Minute lang über http auf." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob eine Minute lang auf." #: templates/admin.php:41 msgid "Share API" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5cac6d4e90..1c6d3f8f90 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dovix Dovix , 2012. # , 2012. # , 2011. # Yaron Shahrabani , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"PO-Revision-Date: 2012-09-14 03:53+0000\n" +"Last-Translator: Dovix Dovix \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "מחיקה" #: js/filelist.js:186 js/filelist.js:188 msgid "already exists" -msgstr "" +msgstr "כבר קיים" #: js/filelist.js:186 js/filelist.js:188 msgid "replace" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index ffe82247eb..f04323bb29 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 13:05+0000\n" +"POT-Creation-Date: 2012-09-15 02:03+0200\n" +"PO-Revision-Date: 2012-09-14 11:13+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Невозможно загрузить список из App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 @@ -33,7 +33,7 @@ msgstr "Группа уже существует" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Невозможно добавить группу" #: ajax/enableapp.php:13 msgid "Could not enable app. " @@ -41,11 +41,11 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email сохранен" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Неверный email" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -57,11 +57,11 @@ msgstr "Неверный запрос" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Невозможно удалить группу" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Невозможно удалить пользователя" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +70,12 @@ msgstr "Язык изменен" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Невозможно добавить пользователя в группу %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Невозможно удалить пользователя из группы %s" #: js/apps.js:18 msgid "Error" @@ -95,7 +95,7 @@ msgstr "Сохранение" #: personal.php:46 personal.php:47 msgid "__language_name__" -msgstr "" +msgstr "__язык_имя__" #: templates/admin.php:14 msgid "Security Warning" @@ -136,7 +136,7 @@ msgstr "Сделать общим API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Включить разделяемые API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" @@ -168,7 +168,7 @@ msgstr "" #: templates/admin.php:69 msgid "Log" -msgstr "" +msgstr "Вход" #: templates/admin.php:97 msgid "More" @@ -194,11 +194,11 @@ msgstr "Выбрать приложение" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Обратитесь к странице приложений на apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licensed by " #: templates/help.php:9 msgid "Documentation" @@ -206,7 +206,7 @@ msgstr "Документация" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "" +msgstr "Управление большими файлами" #: templates/help.php:11 msgid "Ask a question" @@ -234,7 +234,7 @@ msgstr "из доступных" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "" +msgstr "Клиенты синхронизации настольной и мобильной систем" #: templates/personal.php:13 msgid "Download" @@ -306,11 +306,11 @@ msgstr "Создать" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Квота по умолчанию" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "" +msgstr "Другой" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index c94a108ee3..cc9b69f3a9 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,37 +8,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 09:04+0000\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"PO-Revision-Date: 2012-09-14 08:53+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Pomoč" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Osebno" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Nastavitve" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Uporabniki" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Aplikacije" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Skrbnik" @@ -70,47 +70,47 @@ msgstr "Napaka overitve" msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Prosimo, če spletno stran znova naložite." -#: template.php:86 -msgid "seconds ago" -msgstr "sekund nazaj" - #: template.php:87 +msgid "seconds ago" +msgstr "pred nekaj sekundami" + +#: template.php:88 msgid "1 minute ago" msgstr "pred minuto" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "pred %d minutami" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "danes" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "včeraj" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "pred %d dnevi" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "prejšnji mesec" -#: template.php:95 -msgid "months ago" -msgstr "mesecev nazaj" - #: template.php:96 +msgid "months ago" +msgstr "pred nekaj meseci" + +#: template.php:97 msgid "last year" msgstr "lani" -#: template.php:97 +#: template.php:98 msgid "years ago" -msgstr "let nazaj" +msgstr "pred nekaj leti" #: updater.php:66 #, php-format diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 513f7dad7e..b86f4d98f6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:09+0000\n" +"POT-Creation-Date: 2012-09-15 02:03+0200\n" +"PO-Revision-Date: 2012-09-14 08:15+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -124,13 +124,13 @@ msgstr "izvedi eno nalogo z vsako naloženo stranjo" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "Datoteka cron.php je prijavljena pri enem od spletnih cron servisov. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." +msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Uporabi sistemski cron servis. Preko sistemskega cron servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." +msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:41 msgid "Share API" @@ -142,7 +142,7 @@ msgstr "Omogoči API souporabe" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "Dovoli aplikacijam uporabo API-ja souporabe" +msgstr "Aplikacijam dovoli uporabo API-ja souporabe" #: templates/admin.php:51 msgid "Allow links" @@ -184,7 +184,7 @@ msgid "" "licensed under the AGPL." -msgstr "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL." +msgstr "Razvija ga ownCloud skupnost. Izvorna koda je izdana pod licenco AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f973f30be7..8b1c30c04d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index a5194fb6ff..7d70cbe61d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3106c773b4..4e36609acc 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ff8bb7b521..c7181006b2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d714556ebf..5e0bca2c03 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6912df5589..32a42c1f16 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c468e17a21..792e3b753d 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 263fdf4f4a..07f6a96697 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 4db3258de1..6aa325fa8b 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 273773f2f7..eac839e78f 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -12,16 +12,16 @@ "Application is not enabled" => "Aplikacija ni omogočena", "Authentication error" => "Napaka overitve", "Token expired. Please reload page." => "Žeton je potekel. Prosimo, če spletno stran znova naložite.", -"seconds ago" => "sekund nazaj", +"seconds ago" => "pred nekaj sekundami", "1 minute ago" => "pred minuto", "%d minutes ago" => "pred %d minutami", "today" => "danes", "yesterday" => "včeraj", "%d days ago" => "pred %d dnevi", "last month" => "prejšnji mesec", -"months ago" => "mesecev nazaj", +"months ago" => "pred nekaj meseci", "last year" => "lani", -"years ago" => "let nazaj", +"years ago" => "pred nekaj leti", "%s is available. Get more information" => "%s je na voljo. Več informacij.", "up to date" => "ažuren", "updates check is disabled" => "preverjanje za posodobitve je onemogočeno" diff --git a/settings/l10n/de.php b/settings/l10n/de.php index ce1ef9c7ea..ae11ec2bc1 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -3,6 +3,7 @@ "Authentication error" => "Anmeldungsfehler", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail gespeichert", "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root eine Minute lang über http auf.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob eine Minute lang auf.", "Share API" => "Teilungs-API", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 1ae8301064..f7e007b732 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,26 +1,41 @@ "Невозможно загрузить список из App Store", "Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", +"Unable to add group" => "Невозможно добавить группу", +"Email saved" => "Email сохранен", +"Invalid email" => "Неверный email", "OpenID Changed" => "OpenID изменен", "Invalid request" => "Неверный запрос", +"Unable to delete group" => "Невозможно удалить группу", +"Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", +"Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", +"Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", "Error" => "Ошибка", "Disable" => "Отключить", "Enable" => "Включить", "Saving..." => "Сохранение", +"__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", "Cron" => "Cron", "Share API" => "Сделать общим API", +"Enable Share API" => "Включить разделяемые API", "Allow links" => "Предоставить ссылки", +"Log" => "Вход", "More" => "Подробнее", "Add your App" => "Добавить Ваше приложение", "Select an App" => "Выбрать приложение", +"See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", +"-licensed by " => "-licensed by ", "Documentation" => "Документация", +"Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", "Go there manually." => "Сделать вручную.", "Answer" => "Ответ", "You use" => "Вы используете", "of the available" => "из доступных", +"Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем", "Download" => "Загрузка", "Your password got changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", @@ -38,6 +53,8 @@ "Password" => "Пароль", "Groups" => "Группы", "Create" => "Создать", +"Default Quota" => "Квота по умолчанию", +"Other" => "Другой", "Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index d9454147f5..b3d1ee00a6 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -22,11 +22,11 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih cron servisov. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski cron servis. Preko sistemskega cron servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", "Share API" => "API souporabe", "Enable Share API" => "Omogoči API souporabe", -"Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", +"Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", "Allow resharing" => "Dovoli nadaljnjo souporabo", @@ -35,7 +35,7 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL.", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Razvija ga ownCloud skupnost. Izvorna koda je izdana pod licenco AGPL.", "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", From 6568671bdccb335ef7daddac0147056f457a3ea4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 16 Sep 2012 02:03:40 +0200 Subject: [PATCH 15/41] [tx-robot] updated from transifex --- apps/files/l10n/zh_CN.php | 2 ++ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/zh_CN/files.po | 10 +++++----- l10n/zh_CN/settings.po | 12 ++++++------ settings/l10n/zh_CN.php | 3 +++ 13 files changed, 25 insertions(+), 20 deletions(-) diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 3fdb5b6af3..cd8dbe406a 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", "Files" => "文件", +"Unshare" => "取消分享", "Delete" => "删除", "already exists" => "已经存在", "replace" => "替换", @@ -15,6 +16,7 @@ "replaced" => "已经替换", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消分享", "deleted" => "已经删除", "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8b1c30c04d..005388073a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 7d70cbe61d..1b700800f0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4e36609acc..cf7f4cdb78 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index c7181006b2..89e309ece5 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5e0bca2c03..3de2eee1c1 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 32a42c1f16..b04ad64a39 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 792e3b753d..577244a60e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 07f6a96697..229c730bf8 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:03+0200\n" +"POT-Creation-Date: 2012-09-16 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6aa325fa8b..b47119e3b3 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index a7489a4246..d1329bec33 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"PO-Revision-Date: 2012-09-15 14:55+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消分享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -92,7 +92,7 @@ msgstr "随着" #: js/filelist.js:268 msgid "unshared" -msgstr "" +msgstr "已取消分享" #: js/filelist.js:270 msgid "deleted" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index d0817c5473..67d84e1d06 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-16 02:02+0200\n" +"PO-Revision-Date: 2012-09-15 15:20+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "不能添加组" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "无法开启App" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -125,13 +125,13 @@ msgstr "为每个装入的页面执行任务" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" #: templates/admin.php:37 msgid "" "use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统定时任务服务。通过系统定时任务每分钟调用owncloud文件夹中的cron.php文件" #: templates/admin.php:41 msgid "Share API" diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 07f361d3b6..cf5c71214b 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -3,6 +3,7 @@ "Authentication error" => "认证错误", "Group already exists" => "已存在组", "Unable to add group" => "不能添加组", +"Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", @@ -21,6 +22,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", "execute one task with each page loaded" => "为每个装入的页面执行任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。通过系统定时任务每分钟调用owncloud文件夹中的cron.php文件", "Share API" => "共享API", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", From 7da3492ab5afc2b3df95ddbc30be13edf6db6c32 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 16 Sep 2012 17:05:08 +0200 Subject: [PATCH 16/41] show the size of new files when using New->From Url --- apps/files/ajax/newfile.php | 2 +- apps/files/js/files.js | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 4619315ce0..495c821216 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -67,7 +67,7 @@ if($source) { $result=OC_Filesystem::file_put_contents($target, $sourceStream); if($result) { $mime=OC_Filesystem::getMimetype($target); - $eventSource->send('success', $mime); + $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target))); } else { $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 101e2bad2e..30c9b84843 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -556,10 +556,12 @@ $(document).ready(function() { eventSource.listen('progress',function(progress){ $('#uploadprogressbar').progressbar('value',progress); }); - eventSource.listen('success',function(mime){ + eventSource.listen('success',function(data){ + var mime=data.mime; + var size=data.size; $('#uploadprogressbar').fadeOut(); var date=new Date(); - FileList.addFile(localName,0,date,false,hidden); + FileList.addFile(localName,size,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); tr.data('mime',mime); getMimeIcon(mime,function(path){ From 9d533fcd722512cfbc0b7bc547cc4eb822eaafdf Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 16 Sep 2012 17:13:16 +0200 Subject: [PATCH 17/41] =?UTF-8?q?add=20a=20legend=20tag.=20it=C2=B4s=20con?= =?UTF-8?q?sistent=20and=20looks=20nicer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/files_versions/templates/settings.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_versions/templates/settings.php b/apps/files_versions/templates/settings.php index 8682fc0f49..88063cb075 100644 --- a/apps/files_versions/templates/settings.php +++ b/apps/files_versions/templates/settings.php @@ -1,5 +1,6 @@
- />
+ t('Files Versioning');?> + />
From 442f26ea80e8736f085adb01ad932449d5ad476d Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 16 Sep 2012 17:23:21 +0200 Subject: [PATCH 18/41] structure the settings options a bit better. --- settings/templates/admin.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 4edbe64e96..c4eab07ced 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -38,7 +38,7 @@ if(!$_['htaccessworking']) {
- t('Share API');?> + t('Sharing');?> + + +
@@ -46,15 +46,19 @@ if(!$_['htaccessworking']) {
t('Allow apps to use the Share API'); ?>
> />
t('Allow users to share items to the public with links'); ?>
> />
t('Allow users to share items shared with them again'); ?> +
> />
From 158af74b3e1fe7bcdeabfffac6b537c32093e908 Mon Sep 17 00:00:00 2001 From: Alessandro Cosentino Date: Sun, 16 Sep 2012 12:40:08 -0400 Subject: [PATCH 19/41] makes cron config layout similar to the sharing one --- settings/templates/admin.php | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index c4eab07ced..35f34489fe 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -29,12 +29,27 @@ if(!$_['htaccessworking']) {
t('Cron');?> - > -
- > -
- > -
+ + + + + + + + +
+ > +
+ t("Execute one task with each page loaded"); ?> +
+ > +
+ t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?> +
+ > +
+ t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?> +
From 89fb5d47a481ee48ac0cea80cf573c611fcf6e5b Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 16 Sep 2012 13:27:15 -0400 Subject: [PATCH 20/41] Add chosen script and style, bug fix for oc-1745 --- apps/files_external/settings.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index b586ce1e8c..d2be21b711 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -21,7 +21,9 @@ */ OCP\Util::addScript('files_external', 'settings'); +OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min'); OCP\Util::addStyle('files_external', 'settings'); +OCP\Util::addStyle('3rdparty', 'chosen/chosen'); $tmpl = new OCP\Template('files_external', 'settings'); $tmpl->assign('isAdminPage', true, false); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); From 4356f8daeb7b269e8e931abe12675cc89c237c9c Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 16 Sep 2012 20:31:56 +0200 Subject: [PATCH 21/41] add a bit more space --- settings/css/settings.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index f41edc96fb..2015e93b43 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -65,4 +65,4 @@ span.version { margin-left:3em; margin-right:3em; color:#555; } /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } input[type=radio] { width:1em; } -table.shareAPI td { padding-right: 2em; } \ No newline at end of file +table.shareAPI td { padding-bottom: 0.8em; } From a3718ca0366346db43af3f3214ad8da9e3bd7df4 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 16 Sep 2012 22:49:03 +0200 Subject: [PATCH 22/41] i just learned that we also have to check if directories are readable. it seams that is_readable also checks for 'x' right. --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.php b/lib/util.php index b66d5426a6..5e39fd1f91 100755 --- a/lib/util.php +++ b/lib/util.php @@ -211,13 +211,13 @@ class OC_Util { $permissionsHint="Permissions can usually be fixed by giving the webserver write access to the ownCloud directory"; // Check if config folder is writable. - if(!is_writable(OC::$SERVERROOT."/config/")) { + if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { $errors[]=array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"); } // Check if there is a writable install folder. if(OC_Config::getValue('appstoreenabled', true)) { - if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath())) { + if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath()) || !is_readable(OC_App::getInstallPath()) ) { $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud or disabling the appstore in the config file."); } @@ -257,7 +257,7 @@ class OC_Util { if(!$success) { $errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' (in a terminal, use the command 'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); } - } else if(!is_writable($CONFIG_DATADIRECTORY)) { + } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud
','hint'=>$permissionsHint); } From dbd2dea689699df107a53ed39abab6c15edb7f0f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 17 Sep 2012 02:07:23 +0200 Subject: [PATCH 23/41] [tx-robot] updated from transifex --- apps/files/l10n/de.php | 2 +- apps/files_versions/l10n/ca.php | 3 +- apps/files_versions/l10n/cs_CZ.php | 3 +- apps/files_versions/l10n/da.php | 3 +- apps/files_versions/l10n/de.php | 3 +- apps/files_versions/l10n/el.php | 3 +- apps/files_versions/l10n/eo.php | 3 +- apps/files_versions/l10n/es.php | 3 +- apps/files_versions/l10n/et_EE.php | 3 +- apps/files_versions/l10n/eu.php | 3 +- apps/files_versions/l10n/fa.php | 3 +- apps/files_versions/l10n/fi_FI.php | 3 +- apps/files_versions/l10n/fr.php | 3 +- apps/files_versions/l10n/he.php | 3 +- apps/files_versions/l10n/it.php | 3 +- apps/files_versions/l10n/ja_JP.php | 3 +- apps/files_versions/l10n/lt_LT.php | 3 +- apps/files_versions/l10n/nl.php | 3 +- apps/files_versions/l10n/pl.php | 3 +- apps/files_versions/l10n/pt_BR.php | 3 +- apps/files_versions/l10n/ru.php | 3 +- apps/files_versions/l10n/sl.php | 3 +- apps/files_versions/l10n/sv.php | 3 +- apps/files_versions/l10n/th_TH.php | 3 +- apps/files_versions/l10n/vi.php | 3 +- apps/files_versions/l10n/zh_CN.php | 3 +- core/l10n/he.php | 1 + l10n/af/files_versions.po | 12 ++++--- l10n/af/settings.po | 40 +++++++++++----------- l10n/ar/files_versions.po | 12 ++++--- l10n/ar/settings.po | 40 +++++++++++----------- l10n/ar_SA/files_versions.po | 12 ++++--- l10n/ar_SA/settings.po | 40 +++++++++++----------- l10n/bg_BG/files_versions.po | 12 ++++--- l10n/bg_BG/settings.po | 40 +++++++++++----------- l10n/ca/files_versions.po | 14 +++++--- l10n/ca/settings.po | 48 +++++++++++++-------------- l10n/cs_CZ/files_versions.po | 14 +++++--- l10n/cs_CZ/settings.po | 48 +++++++++++++-------------- l10n/da/files_versions.po | 14 +++++--- l10n/da/settings.po | 44 ++++++++++++------------- l10n/de/core.po | 36 ++++++++++---------- l10n/de/files.po | 21 ++++++------ l10n/de/files_versions.po | 16 +++++---- l10n/de/settings.po | 51 +++++++++++++++-------------- l10n/el/files_versions.po | 14 +++++--- l10n/el/settings.po | 42 ++++++++++++------------ l10n/eo/files_versions.po | 14 +++++--- l10n/eo/settings.po | 42 ++++++++++++------------ l10n/es/files_versions.po | 16 +++++---- l10n/es/settings.po | 49 +++++++++++++-------------- l10n/et_EE/files_versions.po | 14 +++++--- l10n/et_EE/settings.po | 44 ++++++++++++------------- l10n/eu/files_versions.po | 14 +++++--- l10n/eu/settings.po | 48 +++++++++++++-------------- l10n/eu_ES/files_versions.po | 12 ++++--- l10n/eu_ES/settings.po | 40 +++++++++++----------- l10n/fa/files_versions.po | 14 +++++--- l10n/fa/settings.po | 40 +++++++++++----------- l10n/fi/files_versions.po | 12 ++++--- l10n/fi/settings.po | 40 +++++++++++----------- l10n/fi_FI/files_versions.po | 16 +++++---- l10n/fi_FI/settings.po | 46 +++++++++++++------------- l10n/fr/files_versions.po | 16 +++++---- l10n/fr/settings.po | 44 ++++++++++++------------- l10n/gl/files_versions.po | 12 ++++--- l10n/gl/settings.po | 42 ++++++++++++------------ l10n/he/core.po | 39 +++++++++++----------- l10n/he/files_versions.po | 14 +++++--- l10n/he/settings.po | 40 +++++++++++----------- l10n/hi/files_versions.po | 12 ++++--- l10n/hi/settings.po | 40 +++++++++++----------- l10n/hr/files_versions.po | 12 ++++--- l10n/hr/settings.po | 40 +++++++++++----------- l10n/hu_HU/files_versions.po | 12 ++++--- l10n/hu_HU/settings.po | 40 +++++++++++----------- l10n/hy/files_versions.po | 12 ++++--- l10n/hy/settings.po | 40 +++++++++++----------- l10n/ia/files_versions.po | 12 ++++--- l10n/ia/settings.po | 40 +++++++++++----------- l10n/id/files_versions.po | 12 ++++--- l10n/id/settings.po | 40 +++++++++++----------- l10n/id_ID/files_versions.po | 12 ++++--- l10n/id_ID/settings.po | 40 +++++++++++----------- l10n/it/files_versions.po | 16 +++++---- l10n/it/settings.po | 48 +++++++++++++-------------- l10n/ja_JP/files_versions.po | 14 +++++--- l10n/ja_JP/settings.po | 48 +++++++++++++-------------- l10n/ko/files_versions.po | 12 ++++--- l10n/ko/settings.po | 42 ++++++++++++------------ l10n/lb/files_versions.po | 12 ++++--- l10n/lb/settings.po | 42 ++++++++++++------------ l10n/lt_LT/files_versions.po | 14 +++++--- l10n/lt_LT/settings.po | 40 +++++++++++----------- l10n/lv/files_versions.po | 12 ++++--- l10n/lv/settings.po | 40 +++++++++++----------- l10n/mk/files_versions.po | 12 ++++--- l10n/mk/settings.po | 40 +++++++++++----------- l10n/ms_MY/files_versions.po | 12 ++++--- l10n/ms_MY/settings.po | 40 +++++++++++----------- l10n/nb_NO/files_versions.po | 14 +++++--- l10n/nb_NO/settings.po | 42 ++++++++++++------------ l10n/nl/files_versions.po | 16 +++++---- l10n/nl/settings.po | 48 +++++++++++++-------------- l10n/nn_NO/files_versions.po | 12 ++++--- l10n/nn_NO/settings.po | 40 +++++++++++----------- l10n/oc/files_versions.po | 12 ++++--- l10n/oc/settings.po | 40 +++++++++++----------- l10n/pl/files_versions.po | 14 +++++--- l10n/pl/settings.po | 44 ++++++++++++------------- l10n/pl_PL/files_versions.po | 12 ++++--- l10n/pl_PL/settings.po | 40 +++++++++++----------- l10n/pt_BR/files_versions.po | 14 +++++--- l10n/pt_BR/settings.po | 42 ++++++++++++------------ l10n/pt_PT/files_versions.po | 12 ++++--- l10n/pt_PT/settings.po | 42 ++++++++++++------------ l10n/ro/files_versions.po | 12 ++++--- l10n/ro/settings.po | 42 ++++++++++++------------ l10n/ru/files_versions.po | 14 +++++--- l10n/ru/settings.po | 44 ++++++++++++------------- l10n/ru_RU/files_versions.po | 12 ++++--- l10n/ru_RU/settings.po | 44 ++++++++++++------------- l10n/sk_SK/files_versions.po | 12 ++++--- l10n/sk_SK/settings.po | 40 +++++++++++----------- l10n/sl/files_versions.po | 16 +++++---- l10n/sl/settings.po | 48 +++++++++++++-------------- l10n/so/files_versions.po | 12 ++++--- l10n/so/settings.po | 40 +++++++++++----------- l10n/sr/files_versions.po | 12 ++++--- l10n/sr/settings.po | 40 +++++++++++----------- l10n/sr@latin/files_versions.po | 12 ++++--- l10n/sr@latin/settings.po | 40 +++++++++++----------- l10n/sv/files_versions.po | 16 +++++---- l10n/sv/settings.po | 48 +++++++++++++-------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 14 ++++---- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 8 +++-- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 38 ++++++++++----------- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files_versions.po | 16 +++++---- l10n/th_TH/settings.po | 48 +++++++++++++-------------- l10n/tr/files_versions.po | 12 ++++--- l10n/tr/settings.po | 40 +++++++++++----------- l10n/uk/files_versions.po | 12 ++++--- l10n/uk/settings.po | 40 +++++++++++----------- l10n/vi/files_versions.po | 14 +++++--- l10n/vi/settings.po | 44 ++++++++++++------------- l10n/zh_CN.GB2312/files_versions.po | 12 ++++--- l10n/zh_CN.GB2312/settings.po | 40 +++++++++++----------- l10n/zh_CN/files_versions.po | 14 +++++--- l10n/zh_CN/settings.po | 48 +++++++++++++-------------- l10n/zh_TW/files_versions.po | 12 ++++--- l10n/zh_TW/settings.po | 42 ++++++++++++------------ settings/l10n/ca.php | 3 -- settings/l10n/cs_CZ.php | 3 -- settings/l10n/da.php | 2 -- settings/l10n/de.php | 5 +-- settings/l10n/el.php | 1 - settings/l10n/eo.php | 1 - settings/l10n/es.php | 4 +-- settings/l10n/et_EE.php | 2 -- settings/l10n/eu.php | 3 -- settings/l10n/fi_FI.php | 2 -- settings/l10n/fr.php | 2 -- settings/l10n/gl.php | 1 - settings/l10n/it.php | 3 -- settings/l10n/ja_JP.php | 3 -- settings/l10n/ko.php | 1 - settings/l10n/lb.php | 1 - settings/l10n/nb_NO.php | 1 - settings/l10n/nl.php | 3 -- settings/l10n/pl.php | 2 -- settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 1 - settings/l10n/ro.php | 1 - settings/l10n/ru.php | 2 -- settings/l10n/ru_RU.php | 1 - settings/l10n/sl.php | 3 -- settings/l10n/sv.php | 3 -- settings/l10n/th_TH.php | 3 -- settings/l10n/vi.php | 2 -- settings/l10n/zh_CN.php | 3 -- settings/l10n/zh_TW.php | 1 - 187 files changed, 1882 insertions(+), 1720 deletions(-) diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 324fae16f0..701c3e877a 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -52,5 +52,5 @@ "Upload too large" => "Upload zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", -"Current scanning" => "Scannen" +"Current scanning" => "Scanne" ); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index b6ddc6feec..51ff7aba1d 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,6 +1,5 @@ "Expira totes les versions", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", -"Enable Files Versioning" => "Habilita les versions de fitxers" +"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" ); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 4f33c1915f..5d19f59d70 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,6 +1,5 @@ "Vypršet všechny verze", "Versions" => "Verze", -"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", -"Enable Files Versioning" => "Povolit verzování souborů" +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů" ); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php index 9fafef99fe..6a69fdbe4c 100644 --- a/apps/files_versions/l10n/da.php +++ b/apps/files_versions/l10n/da.php @@ -1,6 +1,5 @@ "Lad alle versioner udløbe", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer", -"Enable Files Versioning" => "Aktiver filversionering" +"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer" ); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 2c15884d1b..079d96e679 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,6 +1,5 @@ "Alle Versionen löschen", "Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", -"Enable Files Versioning" => "Datei-Versionierung aktivieren" +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index 8953c96bd1..c26ad806bb 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,4 +1,3 @@ "Λήξη όλων των εκδόσεων", -"Enable Files Versioning" => "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων" +"Expire all versions" => "Λήξη όλων των εκδόσεων" ); diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index 2f22b5ac0a..d0f89c576d 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,6 +1,5 @@ "Eksvalidigi ĉiujn eldonojn", "Versions" => "Eldonoj", -"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj", -"Enable Files Versioning" => "Kapabligi dosiereldonkontrolon" +"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 83d7ed0da2..1acab15299 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,6 +1,5 @@ "Expirar todas las versiones", "Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", -"Enable Files Versioning" => "Habilitar versionamiento de archivos" +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" ); diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index cfc48537e0..f1ebd082ad 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -1,6 +1,5 @@ "Kõikide versioonide aegumine", "Versions" => "Versioonid", -"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni", -"Enable Files Versioning" => "Luba failide versioonihaldus" +"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni" ); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index 0f065c1e93..889e762c6b 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,6 +1,5 @@ "Iraungi bertsio guztiak", "Versions" => "Bertsioak", -"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", -"Enable Files Versioning" => "Gaitu fitxategien bertsioak" +"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu" ); diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index e2dc6cba63..98dd415969 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -1,4 +1,3 @@ "انقضای تمامی نسخه‌ها", -"Enable Files Versioning" => "فعال‌کردن پرونده‌های نسخه‌بندی" +"Expire all versions" => "انقضای تمامی نسخه‌ها" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index 5cfcbf28bd..bc8aa67dc7 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,6 +1,5 @@ "Vanhenna kaikki versiot", "Versions" => "Versiot", -"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", -"Enable Files Versioning" => "Käytä tiedostojen versiointia" +"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 965fa02de9..b0e658e8df 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,6 +1,5 @@ "Supprimer les versions intermédiaires", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", -"Enable Files Versioning" => "Activer le versionnage" +"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." ); diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php index 097169b2a4..09a013f45a 100644 --- a/apps/files_versions/l10n/he.php +++ b/apps/files_versions/l10n/he.php @@ -1,6 +1,5 @@ "הפגת תוקף כל הגרסאות", "Versions" => "גרסאות", -"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך", -"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים" +"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index b7b0b9627b..2b7d2b5c13 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,6 +1,5 @@ "Scadenza di tutte le versioni", "Versions" => "Versioni", -"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", -"Enable Files Versioning" => "Abilita controllo di versione" +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index 81d17f56f8..7a00d0b4da 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,6 +1,5 @@ "すべてのバージョンを削除する", "Versions" => "バージョン", -"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", -"Enable Files Versioning" => "ファイルのバージョン管理を有効にする" +"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します" ); diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php index 5da209f31b..b3810d06ec 100644 --- a/apps/files_versions/l10n/lt_LT.php +++ b/apps/files_versions/l10n/lt_LT.php @@ -1,4 +1,3 @@ "Panaikinti visų versijų galiojimą", -"Enable Files Versioning" => "Įjungti failų versijų vedimą" +"Expire all versions" => "Panaikinti visų versijų galiojimą" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index da31603ff5..486b4ed45c 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,6 +1,5 @@ "Alle versies laten verlopen", "Versions" => "Versies", -"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", -"Enable Files Versioning" => "Activeer file versioning" +"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index c25d37611a..a198792a5b 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,6 +1,5 @@ "Wygasają wszystkie wersje", "Versions" => "Wersje", -"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", -"Enable Files Versioning" => "Włącz wersjonowanie plików" +"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index a90b48fe3a..102b6d6274 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,4 +1,3 @@ "Expirar todas as versões", -"Enable Files Versioning" => "Habilitar versionamento de arquivos" +"Expire all versions" => "Expirar todas as versões" ); diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index 675dd090d3..f91cae90a1 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,6 +1,5 @@ "Просрочить все версии", "Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов", -"Enable Files Versioning" => "Включить ведение версий файлов" +"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index aec6edb3c2..8c67b56883 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,6 +1,5 @@ "Zastaraj vse različice", "Versions" => "Različice", -"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", -"Enable Files Versioning" => "Omogoči sledenje različicam datotek" +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 5788d8ae19..16fd9890bf 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,6 +1,5 @@ "Upphör alla versioner", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", -"Enable Files Versioning" => "Aktivera versionshantering" +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 4f26e3bd03..5e075d54a7 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,6 +1,5 @@ "หมดอายุทุกรุ่น", "Versions" => "รุ่น", -"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", -"Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" ); diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index 6743395481..992c0751d0 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -1,6 +1,5 @@ "Hết hạn tất cả các phiên bản", "Versions" => "Phiên bản", -"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có ", -"Enable Files Versioning" => "BẬT tập tin phiên bản" +"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có " ); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 56a474be89..ba2ea40df9 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,6 +1,5 @@ "过期所有版本", "Versions" => "版本", -"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", -"Enable Files Versioning" => "开启文件版本" +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本" ); diff --git a/core/l10n/he.php b/core/l10n/he.php index f0a18103a8..74b6fe7aa4 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -50,6 +50,7 @@ "Database user" => "שם משתמש במסד הנתונים", "Database password" => "ססמת מסד הנתונים", "Database name" => "שם מסד הנתונים", +"Database tablespace" => "מרחב הכתובות של מסד הנתונים", "Database host" => "שרת בסיס נתונים", "Finish setup" => "סיום התקנה", "web services under your control" => "שירותי רשת בשליטתך", diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po index 48efcf1e43..feda4351a8 100644 --- a/l10n/af/files_versions.po +++ b/l10n/af/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index e6f46a265a..2110490f32 100644 --- a/l10n/af/settings.po +++ b/l10n/af/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"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" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3ee010d847..47d059f279 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 0319103fe1..884941c4a5 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 19376143c6..efd8be694d 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilita les versions de fitxers" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index e444e33521..a71b4c0e4a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 07:48+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,67 +116,67 @@ msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles d msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executa una tasca en carregar cada pàgina" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "usa el servei cron del sistema. Feu una crida al fitxer cron.php a la carpeta ownCloud cada minut mitjançant el cronjob del sistema." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de compartir" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activa l'API de compartir" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions usin l'API de compartir" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris comparir elements ja compartits amb ells" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Permet als usuaris compartir amb qualsevol" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb usuaris del seu grup" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registre" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Més" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Povolit verzování souborů" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 0687294ecd..4e8e8e7dca 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 11:25+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,67 +119,67 @@ msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z intern msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "spustit jednu úlohu s každou načtenou stránkou" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "použít službu cron systému. Zavolá soubor cron.php v kořenovém adresáři owncloud každou minutu skrze systémový úkol cronu." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API sdílení" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Záznam" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Více" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Dette vil slette alle eksisterende backupversioner af dine filer" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Aktiver filversionering" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4406d06cee..d9cace9217 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -121,67 +121,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "udfør en opgave for hver indlæst side" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Del API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Aktiver dele API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Tillad apps a bruge dele APIen" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer med offentligheden med links" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Tillad gendeling" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med hvem som helst" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Tillad kun deling med brugere i brugerens egen gruppe" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mere" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-16 18:13+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,55 +40,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "Januar" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "Februar" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "März" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "Mai" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "Dezember" @@ -246,11 +246,11 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de/files.po b/l10n/de/files.po index 406a0d2506..5a9037efcd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -7,6 +7,7 @@ # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # Michael Krell , 2012. # , 2012. @@ -19,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 13:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-16 23:04+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,27 +137,27 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "Ordner" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Ordner" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "Dateien" @@ -248,4 +249,4 @@ msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:85 msgid "Current scanning" -msgstr "Scannen" +msgstr "Scanne" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index f4e27ec514..2cfa07980b 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 06:01+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -33,5 +33,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Datei-Versionierung aktivieren" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 8468da12f5..9aefe033b0 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -8,6 +8,7 @@ # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Jan T , 2012. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-15 02:03+0200\n" -"PO-Revision-Date: 2012-09-14 10:09+0000\n" -"Last-Translator: Jan T \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,67 +125,67 @@ msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. D msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Führe eine Aufgabe pro geladener Seite aus." +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root eine Minute lang über http auf." +msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob eine Minute lang auf." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Teilungs-API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Teilungs-API aktivieren" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Erneutes Teilen erlauben" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Erlaube Nutzern mit jedem zu Teilen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mehr" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 19fcdfb501..fe7b0300c4 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -120,67 +120,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Αρχείο καταγραφής" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Περισσότερο" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Kapabligi dosiereldonkontrolon" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d58cb7ddeb..e8a18dc730 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "lanĉi unu taskon po ĉiu paĝo ŝargita" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Pli" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -33,5 +33,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilitar versionamiento de archivos" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5b0d89c24d..c8a6f5b67c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -8,6 +8,7 @@ # , 2011-2012. # , 2011. # oSiNaReF <>, 2012. +# Raul Fernandez Garcia , 2012. # , 2012. # , 2011. # Rubén Trujillo , 2012. @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,7 +46,7 @@ msgstr "No se pudo añadir el grupo" #: ajax/enableapp.php:13 msgid "Could not enable app. " -msgstr "" +msgstr "No puedo habilitar la app." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -122,67 +123,67 @@ msgstr "El directorio de datos -data- y sus archivos probablemente son accesible msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ejecutar una tarea con cada página cargada" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de compartición" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activar API de compartición" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la API de compartición" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Permitir re-compartir" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Más" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "See kustutab kõik sinu failidest tehtud varuversiooni" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Luba failide versioonihaldus" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index d46fc7de21..d5cf241bde 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "Ajastatud töö" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "käivita iga laetud lehe juures üks ülesanne" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Jagamise API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Luba jagamise API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada jagamise API-t" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Luba linke" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logi" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Veel" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Gaitu fitxategien bertsioak" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 76be611dba..7e6f4e8d9c 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 15:27+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,67 +116,67 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "exekutatu zeregina orri karga bakoitzean" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Partekatze APIa" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Gaitu Partekatze APIa" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Partekatze APIa erabiltzeko" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin partekatzen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Gehiago" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 267038a707..1d02c170d7 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "فعال‌کردن پرونده‌های نسخه‌بندی" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index f3d18a42a2..05cf00feb1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "بیشتر" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index cc2d672b09..1343234a7d 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Käytä tiedostojen versiointia" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index ab312d2d97..5b6f5d055c 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 10:57+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,67 +116,67 @@ msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htac msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Jaon ohelmointirajapinta (Share API)" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Ota käyttöön jaon ohjelmoitirajapinta (Share API)" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Salli uudelleenjako" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kohteita kenen tahansa kanssa" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Loki" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lisää" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Activer le versionnage" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index f780bb5692..7e5fba19f0 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -125,67 +125,67 @@ msgstr "Votre répertoire de données et vos fichiers sont probablement accessib msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "exécuter une tâche pour chaque page chargée" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de partage" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Autoriser le re-partage" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Journaux" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Plus" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \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" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 769aacbf09..306515b40d 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executar unha tarefa con cada páxina cargada" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Conectar" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Máis" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2012. # , 2012. # , 2011. # Yaron Shahrabani , 2011, 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-16 18:05+0000\n" +"Last-Translator: Dovix Dovix \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,55 +33,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "הגדרות" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "ינואר" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "פברואר" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "מרץ" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "אפריל" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "מאי" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "יוני" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "יולי" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "אוגוסט" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "ספטמבר" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "אוקטובר" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "נובמבר" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "דצמבר" @@ -228,7 +229,7 @@ msgstr "שם מסד הנתונים" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "מרחב הכתובות של מסד הנתונים" #: templates/installation.php:115 msgid "Database host" @@ -238,11 +239,11 @@ msgstr "שרת בסיס נתונים" msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index e0cb0e526e..cb49463e16 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 23:22+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "הפעלת ניהול גרסאות לקבצים" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index a8bc3ed1f9..b1857fd4bc 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "יומן" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "עוד" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 78b99c18d3..1b137320ef 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index bf3c88d31f..c6c42e6193 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "više" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index a240440b5f..1554df638c 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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Napló" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Tovább" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index d758fb7e94..3698a77bef 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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f90eb48800..14db6bd79c 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Plus" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index b32796f551..2683a4b638 100644 --- a/l10n/id/settings.po +++ b/l10n/id/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lebih" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 8d272ad770..68339ff2e3 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Abilita controllo di versione" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 67345083db..65b4ad108b 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 05:39+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,67 +120,67 @@ msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Int msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "esegui un'attività con ogni pagina caricata" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud ogni minuto." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API di condivisione" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere elementi già condivisi" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Altro" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "ファイルのバージョン管理を有効にする" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c6680acbbf..a22d6af28b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 16:13+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,67 +115,67 @@ msgstr "データディレクトリとファイルが恐らくインターネッ msgid "Cron" msgstr "cron(自動定期実行)" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ページを開く毎にタスクを1つ実行" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "システムの cron サービスを利用します。システムの cron ジョブを通して1分間に1回の頻度で owncloud 内の cron.php ファイルを呼び出します。" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Share API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Share APIを有効" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Share APIの使用をアプリケーションに許可" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "リンクを許可" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "再共有を許可" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "ユーザーが誰にでも共有出来るようにする" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "ユーザーがグループの人にしか共有出来ないようにする" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "ログ" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "もっと" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 5caaccb275..7012c67898 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "크론" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "각 페이지가 로드 된 하나의 작업을 실행" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "로그" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "더" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 8df0495662..80921ebde3 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Share API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Méi" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Įjungti failų versijų vedimą" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index f9f0412202..e7274b4e65 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Daugiau" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 54a261a9ff..5f35f0bfa5 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Vairāk" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 5f1ffcc6ed..847b78c915 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Записник" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Повеќе" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index c93a805543..c9700ca3a0 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -117,67 +117,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Slå på versjonering" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 85d96230f8..2a926e6f97 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -119,67 +119,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "utfør en oppgave med hver side som blir lastet" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logg" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mer" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Activeer file versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index cd07c25ca8..75b4f754a8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 18:45+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -121,67 +121,67 @@ msgstr "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het inte msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Voer 1 taak uit bij elke geladen pagina" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Gebruik de systeem cron functionaliteit. Roep het cron.php bestand via een systeem cronjob één maal per minuut op." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Deel API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Zet de Deel API aan" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Sta apps toe om de Deel API te gebruiken" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Sta links toe" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Sta gebruikers toe om items via links publiekelijk te maken" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Sta verder delen toe" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Sta gebruikers toe om items nogmaals te delen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Sta gebruikers toe om met iedereen te delen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Meer" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 40a158192d..3ab1c66633 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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -115,67 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 65d98b9c14..f46812b102 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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Włącz wersjonowanie plików" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1689285d42..d1c25e8f75 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -121,67 +121,67 @@ msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. P msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "wykonanie jednego zadania z każdej załadowanej strony" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Udostępnij API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Włącz udostępniane API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na używanie API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Zezwalaj na łącza" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Zezwól na ponowne udostępnianie" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Więcej" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_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" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index fe2334598d..69bcf9ca78 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilitar versionamento de arquivos" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 3e0941d765..605cee5db9 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -119,67 +119,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executar uma tarefa com cada página em aberto" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mais" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index e5e52c51eb..1ed27b86f7 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Executar uma tarefa com cada página carregada" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mais" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index cf3ece6484..bf628a0ea6 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -118,67 +118,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executâ o sarcină cu fiecare pagină încărcată" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mai mult" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Очистить список версий ваших файлов" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Включить ведение версий файлов" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9695b338b3..58403d5b2f 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -122,67 +122,67 @@ msgstr "Похоже, что каталог data и ваши файлы в не msgid "Cron" msgstr "Задание" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Запускать задание при загрузке каждой страницы" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API публикации" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Включить API публикации" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Разрешить API публикации для приложений" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям публикацию при помощи ссылок" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Включить повторную публикацию" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Разрешить пользователям публиковать доступные им элементы других пользователей" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Разрешить публиковать для любых пользователей" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Ограничить публикацию группами пользователя" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Журнал" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Ещё" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index f04323bb29..851ca47160 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-09-15 02:03+0200\n" -"PO-Revision-Date: 2012-09-14 11:13+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Сделать общим API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Включить разделяемые API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Предоставить ссылки" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Вход" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Подробнее" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 671b754f2e..3b261aff56 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Záznam" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Viac" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Omogoči sledenje različicam datotek" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b86f4d98f6..1f1dabc9e6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-15 02:03+0200\n" -"PO-Revision-Date: 2012-09-14 08:15+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,67 +116,67 @@ msgstr "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko intern msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "izvedi eno nalogo z vsako naloženo stranjo" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API souporabe" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Aplikacijam dovoli uporabo API-ja souporabe" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo z javnimi povezavami" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Več" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 102238c5e5..68d750e156 100644 --- a/l10n/so/settings.po +++ b/l10n/so/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index fcbed1eb15..da8a79a19f 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 50fee67d49..eba1c39cf0 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Aktivera versionshantering" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 8ba6e19927..b079b0d28f 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 06:17+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,67 +120,67 @@ msgstr "Din datamapp och dina filer kan möjligen vara nåbara från internet. F msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "utför en uppgift vid varje sidladdning" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "använd systementjänsten cron. Anropa cron.php filen i ownCloud mappen via ett system cronjobb en gång i minuten." +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Delat API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Tillåt dela vidare" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dom" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logg" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mera" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1b700800f0..b1aa09a252 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -124,27 +124,27 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index cf7f4cdb78..0df6985522 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 89e309ece5..8d42a6afa7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 3de2eee1c1..35dd588cbf 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b04ad64a39..b1b3317462 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 577244a60e..9ac5f5f69f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 229c730bf8..98e8f618fd 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-16 02:02+0200\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,67 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 28f3effc2a..2c49fa9e76 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 22:45+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index bf259cec40..1abfb4ff29 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 17:04+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,67 +116,67 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ที่อยู่ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "เพิ่มเติม" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index fc8d5aedde..3cf53f10ff 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -116,67 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Günlük" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Devamı" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index d689c5e88f..768ec5f798 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có " #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "BẬT tập tin phiên bản" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d9f7c13dab..587aca88e4 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -117,67 +117,67 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Thực thi một nhiệm vụ với mỗi trang được nạp" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Chia sẻ API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "nhiều hơn" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 228e168b8a..247d5f6e3f 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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -114,67 +114,67 @@ msgstr "" msgid "Cron" msgstr "定时" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "日志" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "开启文件版本" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 67d84e1d06..8719804427 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-16 02:02+0200\n" -"PO-Revision-Date: 2012-09-15 15:20+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,67 +117,67 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的. msgid "Cron" msgstr "计划任务" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "为每个装入的页面执行任务" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "使用系统定时任务服务。通过系统定时任务每分钟调用owncloud文件夹中的cron.php文件" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "共享API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "开启共享API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "允许 应用 使用共享API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "允许连接" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接向公众共享" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "日志" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1af9868791..15d4d53529 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 00:01+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -117,67 +117,67 @@ msgstr "" msgid "Cron" msgstr "定期執行" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "當頁面載入時,執行" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:35 +#: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:49 msgid "" -"use systems cron service. Call the cron.php file in the owncloud folder via " +"Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:56 +msgid "Sharing" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "允許使用者轉貼共享檔案" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "允許使用者公開分享" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "紀錄" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the "Avís de seguretat", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", -"execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "usa el servei cron del sistema. Feu una crida al fitxer cron.php a la carpeta ownCloud cada minut mitjançant el cronjob del sistema.", -"Share API" => "API de compartir", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", "Allow links" => "Permet enllaços", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index eb7aac5224..382c2e75b3 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,10 +21,7 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", -"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "použít službu cron systému. Zavolá soubor cron.php v kořenovém adresáři owncloud každou minutu skrze systémový úkol cronu.", -"Share API" => "API sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 16b4e11eb9..53e51111a2 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -13,8 +13,6 @@ "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", "Cron" => "Cron", -"execute one task with each page loaded" => "udfør en opgave for hver indlæst side", -"Share API" => "Del API", "Enable Share API" => "Aktiver dele API", "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", "Allow links" => "Tillad links", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index ae11ec2bc1..83a57cc196 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -21,10 +21,7 @@ "Security Warning" => "Sicherheitshinweis", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", -"execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root eine Minute lang über http auf.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob eine Minute lang auf.", -"Share API" => "Teilungs-API", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 536e72bad6..075734fb5f 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -13,7 +13,6 @@ "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", "Cron" => "Cron", -"execute one task with each page loaded" => "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 61ac0fac27..c3bfa63f15 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -13,7 +13,6 @@ "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "Cron" => "Cron", -"execute one task with each page loaded" => "lanĉi unu taskon po ĉiu paĝo ŝargita", "Log" => "Protokolo", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 36561d9aee..c939399494 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -3,6 +3,7 @@ "Authentication error" => "Error de autenticación", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", +"Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "OpenID Changed" => "OpenID cambiado", @@ -20,8 +21,7 @@ "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", -"execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", -"Share API" => "API de compartición", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 13924f7548..9a8dd9fe13 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -19,8 +19,6 @@ "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", "Cron" => "Ajastatud töö", -"execute one task with each page loaded" => "käivita iga laetud lehe juures üks ülesanne", -"Share API" => "Jagamise API", "Enable Share API" => "Luba jagamise API", "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t", "Allow links" => "Luba linke", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 81d6494507..529b13df39 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -21,10 +21,7 @@ "Security Warning" => "Segurtasun abisua", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", -"execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez.", -"Share API" => "Partekatze APIa", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bb3953794c..b5571ac9a5 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -21,8 +21,6 @@ "Security Warning" => "Turvallisuusvaroitus", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", -"execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla", -"Share API" => "Jaon ohelmointirajapinta (Share API)", "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a1c38d1e79..2ef64e2531 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -20,8 +20,6 @@ "Security Warning" => "Alertes de sécurité", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", -"execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", -"Share API" => "API de partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", "Allow links" => "Autoriser les liens", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 245ef329e8..0cb1fbd646 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -13,7 +13,6 @@ "__language_name__" => "Galego", "Security Warning" => "Aviso de seguridade", "Cron" => "Cron", -"execute one task with each page loaded" => "executar unha tarefa con cada páxina cargada", "Log" => "Conectar", "More" => "Máis", "Add your App" => "Engade o teu aplicativo", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 3728ea72da..6359655b55 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -21,10 +21,7 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", -"execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud ogni minuto.", -"Share API" => "API di condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 9219e80809..d675cc6836 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -21,10 +21,7 @@ "Security Warning" => "セキュリティ警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", -"execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムの cron サービスを利用します。システムの cron ジョブを通して1分間に1回の頻度で owncloud 内の cron.php ファイルを呼び出します。", -"Share API" => "Share API", "Enable Share API" => "Share APIを有効", "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", "Allow links" => "リンクを許可", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 0ff261c929..3ea2674a18 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -13,7 +13,6 @@ "__language_name__" => "한국어", "Security Warning" => "보안 경고", "Cron" => "크론", -"execute one task with each page loaded" => "각 페이지가 로드 된 하나의 작업을 실행", "Log" => "로그", "More" => "더", "Add your App" => "앱 추가", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 5728299d0d..d840a1d710 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,7 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sécherheets Warnung", "Cron" => "Cron", -"Share API" => "Share API", "Enable Share API" => "Share API aschalten", "Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", "Allow links" => "Links erlaben", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 183406d0b0..8a1f42b7bf 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -13,7 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sikkerhetsadvarsel", "Cron" => "Cron", -"execute one task with each page loaded" => "utfør en oppgave med hver side som blir lastet", "Log" => "Logg", "More" => "Mer", "Add your App" => "Legg til din App", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index f350f8295e..098f29a06e 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -21,10 +21,7 @@ "Security Warning" => "Veiligheidswaarschuwing", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", -"execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gebruik de systeem cron functionaliteit. Roep het cron.php bestand via een systeem cronjob één maal per minuut op.", -"Share API" => "Deel API", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", "Allow links" => "Sta links toe", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ba6a36f28f..7a3dfdfdde 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -20,8 +20,6 @@ "Security Warning" => "Ostrzeżenia bezpieczeństwa", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", -"execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", -"Share API" => "Udostępnij API", "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 9bd4923e3c..b5579d4f9e 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -11,7 +11,6 @@ "Saving..." => "Gravando...", "__language_name__" => "Português", "Security Warning" => "Aviso de Segurança", -"execute one task with each page loaded" => "executar uma tarefa com cada página em aberto", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione seu Aplicativo", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 98eb41b15e..bf5a742e1b 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -13,7 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Aviso de Segurança", "Cron" => "Cron", -"execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione a sua aplicação", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index a41e7bc06c..e072daa991 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -13,7 +13,6 @@ "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", "Cron" => "Cron", -"execute one task with each page loaded" => "executâ o sarcină cu fiecare pagină încărcată", "Log" => "Jurnal de activitate", "More" => "Mai mult", "Add your App" => "Adaugă aplicația ta", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index f8e70b391c..7ae8d53174 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -20,8 +20,6 @@ "Security Warning" => "Предупреждение безопасности", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что каталог data и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.", "Cron" => "Задание", -"execute one task with each page loaded" => "Запускать задание при загрузке каждой страницы", -"Share API" => "API публикации", "Enable Share API" => "Включить API публикации", "Allow apps to use the Share API" => "Разрешить API публикации для приложений", "Allow links" => "Разрешить ссылки", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index f7e007b732..2b7400968a 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -19,7 +19,6 @@ "__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", "Cron" => "Cron", -"Share API" => "Сделать общим API", "Enable Share API" => "Включить разделяемые API", "Allow links" => "Предоставить ссылки", "Log" => "Вход", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b3d1ee00a6..b15a70aef1 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -21,10 +21,7 @@ "Security Warning" => "Varnostno opozorilo", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", -"execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", -"Share API" => "API souporabe", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 542fcf6914..8886502044 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -21,10 +21,7 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", -"execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "använd systementjänsten cron. Anropa cron.php filen i ownCloud mappen via ett system cronjobb en gång i minuten.", -"Share API" => "Delat API", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 02f9a284ac..074c8128b4 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -21,10 +21,7 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", -"execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ที่อยู่ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", -"Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index d1d7e0c433..ade8a02131 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -20,8 +20,6 @@ "Security Warning" => "Cảnh bảo bảo mật", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", -"execute one task with each page loaded" => "Thực thi một nhiệm vụ với mỗi trang được nạp", -"Share API" => "Chia sẻ API", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow links" => "Cho phép liên kết", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index cf5c71214b..89115f6c7c 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,10 +21,7 @@ "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", -"execute one task with each page loaded" => "为每个装入的页面执行任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", -"use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。通过系统定时任务每分钟调用owncloud文件夹中的cron.php文件", -"Share API" => "共享API", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 0abeb6e285..1a16215230 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -19,7 +19,6 @@ "__language_name__" => "__語言_名稱__", "Security Warning" => "安全性警告", "Cron" => "定期執行", -"execute one task with each page loaded" => "當頁面載入時,執行", "Allow links" => "允許連結", "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow resharing" => "允許轉貼分享", From 7a7d2a06b3884839d570cb426f91563edc5b8177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 17 Sep 2012 10:54:06 +0300 Subject: [PATCH 24/41] Adding a few more string to translation --- apps/files/js/files.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 30c9b84843..55b48ff075 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -253,10 +253,10 @@ $(document).ready(function() { var img = OC.imagePath('core', 'loading.gif'); var tr=$('tr').filterAttr('data-file',dirName); tr.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text('1 file uploading'); + uploadtext.text(t('files', '1 file uploading')); uploadtext.show(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + t('files', ' files uploading')); } } } @@ -301,7 +301,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + t('files', ' files uploading')); } }) .error(function(jqXHR, textStatus, errorThrown) { @@ -316,7 +316,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + t('files', ' files uploading')); } $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); @@ -663,7 +663,7 @@ function scanFiles(force,dir){ var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('scanning',function(data){ - $('#scan-count').text(data.count+' files scanned'); + $('#scan-count').text(data.count+t('files',' files scanned')); $('#scan-current').text(data.file+'/'); }); scannerEventSource.listen('success',function(success){ @@ -671,7 +671,7 @@ function scanFiles(force,dir){ if(success){ window.location.reload(); }else{ - alert('error while scanning'); + alert(t('files', 'error while scanning')); } }); } From 21bffbfb6964d46e36240d2001dd8bb4533b6d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 17 Sep 2012 11:14:44 +0300 Subject: [PATCH 25/41] Enhanced space handling - thx fmms --- apps/files/js/files.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 55b48ff075..aefd6f20be 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -256,7 +256,7 @@ $(document).ready(function() { uploadtext.text(t('files', '1 file uploading')); uploadtext.show(); } else { - uploadtext.text(currentUploads + t('files', ' files uploading')); + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } } } @@ -301,7 +301,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + t('files', ' files uploading')); + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } }) .error(function(jqXHR, textStatus, errorThrown) { @@ -316,7 +316,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + t('files', ' files uploading')); + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); @@ -663,7 +663,7 @@ function scanFiles(force,dir){ var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('scanning',function(data){ - $('#scan-count').text(data.count+t('files',' files scanned')); + $('#scan-count').text(data.count + ' ' + t('files', 'files scanned')); $('#scan-current').text(data.file+'/'); }); scannerEventSource.listen('success',function(success){ From 1fd3c5fbc0b76fd6513670445e3358b94231d41a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 17 Sep 2012 14:50:17 +0300 Subject: [PATCH 26/41] $l was undefined --- settings/ajax/enableapp.php | 1 + 1 file changed, 1 insertion(+) diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index 1075a9a433..c3b3491db9 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -10,5 +10,6 @@ $appid = OC_App::enable($_POST['appid']); if($appid !== false) { OC_JSON::success(array('data' => array('appid' => $appid))); } else { + $l = OC_L10N::get('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") ))); } From f85b709fae1869f684a4c91067b6a38b4e629163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 17 Sep 2012 15:00:22 +0300 Subject: [PATCH 27/41] Use correct translation file every translation within the sub folder 'settings' need to use 'settings' on OC_L10N::get --- settings/ajax/apps/ocs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index 71cb046fc8..b47a67c13b 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -11,7 +11,7 @@ require_once '../../../lib/base.php'; OC_JSON::checkAdminUser(); -$l = OC_L10N::get('core'); +$l = OC_L10N::get('settings'); if(OC_Config::getValue('appstoreenabled', true)==false) { OCP\JSON::success(array('type' => 'external', 'data' => array())); From 9da150cd3b12208a0e6b26acd4156215a7df5f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 16:32:24 +0200 Subject: [PATCH 28/41] use user name as db name for oracle connection made with service name --- lib/db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/db.php b/lib/db.php index 4d8e5a1a86..9c10512350 100644 --- a/lib/db.php +++ b/lib/db.php @@ -232,6 +232,7 @@ class OC_DB { $dsn['database'] = $name; } else { // use dbname for hostspec $dsn['hostspec'] = $name; + $dsn['database'] = $user; } break; } From c790a0c476a763383c49f43ceb1a366efe5d6a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 16:35:31 +0200 Subject: [PATCH 29/41] fix default values: 1. remove whitespace, don't use emptystring for int, remove empty default for nullable columns to use NULL as default --- db_structure.xml | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 2256dff943..d04c838d7c 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -76,8 +76,7 @@ parent integer - - + 0 true 8 @@ -85,8 +84,7 @@ name text - - + true 300 @@ -94,8 +92,7 @@ user text - - + true 64 @@ -103,7 +100,7 @@ size integer - + 0 true 8 @@ -111,8 +108,7 @@ ctime integer - - + 0 true 8 @@ -120,8 +116,7 @@ mtime integer - - + 0 true 8 @@ -129,8 +124,7 @@ mimetype text - - + true 96 @@ -138,8 +132,7 @@ mimepart text - - + true 32 @@ -322,7 +315,6 @@ timeout integer - false true 4 @@ -331,7 +323,6 @@ created integer - false 8 @@ -347,7 +338,6 @@ scope integer - false 1 @@ -355,7 +345,6 @@ depth integer - false 1 @@ -469,7 +458,7 @@ share_type integer - + 0 true 1 @@ -493,7 +482,6 @@ parent integer - false 4 @@ -525,7 +513,6 @@ file_source integer - false 4 @@ -541,7 +528,7 @@ permissions integer - + 0 true 1 @@ -549,7 +536,7 @@ stime integer - + 0 true 8 @@ -565,7 +552,6 @@ expiration timestamp - false From 1207ae1f99d86c5335602ebc51011b204aa0d5e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 17 Sep 2012 17:02:17 +0200 Subject: [PATCH 30/41] add leading '?' to parameter list (fixes bug #1732) --- lib/helper.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 70b2f78862..dda5fcc5f0 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -62,8 +62,11 @@ class OC_Helper { } } - foreach($args as $k => $v) { - $urlLinkTo .= '&'.$k.'='.$v; + if (!empty($args)) { + $urlLinkTo .= '?'; + foreach($args as $k => $v) { + $urlLinkTo .= '&'.$k.'='.$v; + } } return $urlLinkTo; From 597fed4fde9d1e3e39b8ca492dbfd324b17ffd58 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 17 Sep 2012 15:28:13 +0000 Subject: [PATCH 31/41] Fix oc-1726, cannot delete multiple files one by one without refresh --- apps/files/js/filelist.js | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 7ebfd4b68b..f2b558496e 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -260,7 +260,6 @@ var FileList={ FileList.prepareDeletion(files); } FileList.lastAction(); - return; } FileList.prepareDeletion(files); // NOTE: Temporary fix to change the text to unshared for files in root of Shared folder From 7811fa4fafae2f2be643a03ed6186a34a83ad059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 17:57:45 +0200 Subject: [PATCH 32/41] timestamp uses emptystring as NULL default --- db_structure.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/db_structure.xml b/db_structure.xml index d04c838d7c..74e2805308 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -552,6 +552,7 @@ expiration timestamp + false From ab33578add88a94b94835741044b6dbfca4720af Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 14 Sep 2012 23:15:52 +0200 Subject: [PATCH 33/41] Normalize path before calling removeETagPropertyForPath This should also fix the dirname problem on windows --- lib/filesystem.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/filesystem.php b/lib/filesystem.php index 92eb4fa477..ce4d3a0cf4 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -527,6 +527,7 @@ class OC_Filesystem{ } else { $path=$params['oldpath']; } + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } From ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:27:37 +0200 Subject: [PATCH 34/41] Fix return statement --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index 28f1f16eba..49e644c1f7 100755 --- a/lib/app.php +++ b/lib/app.php @@ -640,7 +640,7 @@ class OC_App{ } }else{ OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); - false; + return false; } } } From b04c7175dc89cb53b4719f140d65df01bdce1301 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:29:34 +0200 Subject: [PATCH 35/41] Check if the versioned file exists before trying to do the versioning This didn't work with chunked uploading --- apps/files_versions/lib/versions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index e429782aed..c517eb01ff 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -77,6 +77,7 @@ class Storage { $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); //check if source file already exist as version to avoid recursions. + // todo does this check work? if ($users_view->file_exists($filename)) { return false; } @@ -96,6 +97,11 @@ class Storage { } } + // we should have a source file to work with + if (!$files_view->file_exists($filename)) { + return false; + } + // check filesize if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { return false; From b1bab6d11345275f384eeda4d20b8b280d8bfb93 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:34:49 +0200 Subject: [PATCH 36/41] Check format of chunked filename --- lib/connector/sabre/directory.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 39606577f6..b5049d800c 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -50,6 +50,9 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function createFile($name, $data = null) { if (isset($_SERVER['HTTP_OC_CHUNKED'])) { $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { From 7749875a0d9a90978467cae4a605dd6f1eaf939c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 18:00:54 +0200 Subject: [PATCH 37/41] Fix 'Search only shows the app name of the first app' Fixes: oc-1369 --- search/js/result.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/js/result.js b/search/js/result.js index 27a2383e2c..aaecde08c6 100644 --- a/search/js/result.js +++ b/search/js/result.js @@ -45,7 +45,7 @@ OC.search.showResults=function(results){ var row=$('#searchresults tr.template').clone(); row.removeClass('template'); row.addClass('result'); - if (index == 0){ + if (i == 0){ row.children('td.type').text(name); } row.find('td.result a').attr('href',type[i].link); From 82ffefb99b5a625e5ebb7dcdeb32c4ca910e8097 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 17 Sep 2012 22:12:17 +0200 Subject: [PATCH 38/41] dont trigger filesystem hooks when not using the default view --- lib/filesystemview.php | 156 ++++++++++++++++++++++------------------- 1 file changed, 84 insertions(+), 72 deletions(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 743f940301..fcf419e864 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -263,24 +263,26 @@ class OC_FilesystemView { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_write, array( OC_Filesystem::signal_param_path => $path, OC_Filesystem::signal_param_run => &$run ) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path, - OC_Filesystem::signal_param_run => &$run - ) - ); if(!$run) { return false; } @@ -289,18 +291,20 @@ class OC_FilesystemView { $count=OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, + OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path) - ); OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ @@ -330,14 +334,16 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } if($run) { $mp1 = $this->getMountPoint($path1.$postFix1); $mp2 = $this->getMountPoint($path2.$postFix2); @@ -353,14 +359,16 @@ class OC_FilesystemView { $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2 - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2 + ) + ); + } return $result; } } @@ -378,35 +386,37 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - $exists=$this->file_exists($path2); - if($run and !$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_copy, array( - OC_Filesystem::signal_param_path => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - } - if($run) { - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2, OC_Filesystem::signal_param_run => &$run ) ); + $exists=$this->file_exists($path2); + if($run and !$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } + if($run) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_write, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } } if($run) { $mp1=$this->getMountPoint($path1.$postFix1); @@ -420,26 +430,28 @@ class OC_FilesystemView { $target = $this->fopen($path2.$postFix2, 'w'); $result = OC_Helper::streamCopy($source, $target); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2 - ) - ); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, - array(OC_Filesystem::signal_param_path => $path2) + OC_Filesystem::signal_post_copy, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2 + ) + ); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array(OC_Filesystem::signal_param_path => $path2) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_write, + array( OC_Filesystem::signal_param_path => $path2) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path2) - ); return $result; } } From 2a8ff8a0d49f136f7b31fbaf1147396574f5683c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 17 Sep 2012 22:15:45 +0200 Subject: [PATCH 39/41] fix problem with quota proxy when using copy --- lib/fileproxy/quota.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index adbff3d301..5a0dbdb6fe 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -26,6 +26,7 @@ */ class OC_FileProxy_Quota extends OC_FileProxy{ + static $rootView; private $userQuota=-1; /** @@ -86,7 +87,10 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } public function preCopy($path1,$path2) { - return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); + if(!self::$rootView){ + self::$rootView = new OC_FilesystemView(''); + } + return (self::$rootView->filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); } public function preFromTmpFile($tmpfile,$path) { @@ -96,4 +100,4 @@ class OC_FileProxy_Quota extends OC_FileProxy{ public function preFromUploadedFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } -} \ No newline at end of file +} From 6444c27e6a5e47d24416d421ac2011ccffd4e3ed Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 17 Sep 2012 22:50:08 +0200 Subject: [PATCH 40/41] LDAP: fix MySQL-query with DUAL table by removing wrong backticks. Got broke when they were added to SQL queries. --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 089548a69b..53619ab4c1 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -385,7 +385,7 @@ abstract class Access { $sqlAdjustment = ''; $dbtype = \OCP\Config::getSystemValue('dbtype'); if($dbtype == 'mysql') { - $sqlAdjustment = 'FROM `dual`'; + $sqlAdjustment = 'FROM DUAL'; } $insert = \OCP\DB::prepare(' From 06e963c54f3067381784c976df75c250e43a95bd Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 18 Sep 2012 02:04:26 +0200 Subject: [PATCH 41/41] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 5 ++ apps/files/l10n/zh_CN.GB2312.php | 5 ++ apps/files_encryption/l10n/zh_CN.GB2312.php | 6 ++ apps/files_external/l10n/el.php | 12 ++- apps/files_external/l10n/zh_CN.GB2312.php | 18 ++++ apps/files_sharing/l10n/el.php | 5 +- apps/files_sharing/l10n/zh_CN.GB2312.php | 7 ++ apps/files_versions/l10n/cs_CZ.php | 4 +- apps/files_versions/l10n/de.php | 4 +- apps/files_versions/l10n/el.php | 6 +- apps/files_versions/l10n/es.php | 4 +- apps/files_versions/l10n/it.php | 4 +- apps/files_versions/l10n/sl.php | 4 +- apps/files_versions/l10n/sv.php | 4 +- apps/files_versions/l10n/th_TH.php | 4 +- apps/files_versions/l10n/zh_CN.GB2312.php | 7 ++ apps/files_versions/l10n/zh_CN.php | 4 +- apps/user_ldap/l10n/de.php | 2 +- apps/user_ldap/l10n/zh_CN.GB2312.php | 37 ++++++++ core/l10n/de.php | 2 +- core/l10n/el.php | 1 + core/l10n/ro.php | 18 ++++ core/l10n/zh_CN.GB2312.php | 1 + l10n/af/files.po | 30 ++++--- l10n/ar/files.po | 30 ++++--- l10n/ar_SA/files.po | 30 ++++--- l10n/bg_BG/files.po | 30 ++++--- l10n/ca/files.po | 32 ++++--- l10n/cs_CZ/files.po | 32 ++++--- l10n/cs_CZ/files_versions.po | 10 +-- l10n/cs_CZ/settings.po | 14 +-- l10n/da/files.po | 32 ++++--- l10n/de/core.po | 9 +- l10n/de/files.po | 20 +++-- l10n/de/files_versions.po | 11 +-- l10n/de/lib.po | 42 ++++----- l10n/de/settings.po | 16 ++-- l10n/de/user_ldap.po | 8 +- l10n/el/core.po | 39 ++++---- l10n/el/files.po | 41 +++++---- l10n/el/files_external.po | 27 +++--- l10n/el/files_sharing.po | 17 ++-- l10n/el/files_versions.po | 15 ++-- l10n/el/settings.po | 57 ++++++------ l10n/eo/files.po | 32 ++++--- l10n/es/files.po | 32 ++++--- l10n/es/files_versions.po | 10 +-- l10n/es/settings.po | 12 +-- l10n/et_EE/files.po | 32 ++++--- l10n/eu/files.po | 32 ++++--- l10n/eu_ES/files.po | 30 ++++--- l10n/fa/files.po | 30 ++++--- l10n/fi/files.po | 30 ++++--- l10n/fi_FI/files.po | 30 ++++--- l10n/fr/files.po | 32 ++++--- l10n/gl/files.po | 30 ++++--- l10n/he/files.po | 32 ++++--- l10n/hi/files.po | 30 ++++--- l10n/hr/files.po | 30 ++++--- l10n/hu_HU/files.po | 30 ++++--- l10n/hy/files.po | 30 ++++--- l10n/ia/files.po | 30 ++++--- l10n/id/files.po | 30 ++++--- l10n/id_ID/files.po | 30 ++++--- l10n/it/files.po | 32 ++++--- l10n/it/files_versions.po | 10 +-- l10n/it/settings.po | 14 +-- l10n/ja_JP/files.po | 32 ++++--- l10n/ko/files.po | 30 ++++--- l10n/lb/files.po | 30 ++++--- l10n/lt_LT/files.po | 30 ++++--- l10n/lv/files.po | 30 ++++--- l10n/mk/files.po | 30 ++++--- l10n/ms_MY/files.po | 30 ++++--- l10n/nb_NO/files.po | 30 ++++--- l10n/nl/files.po | 32 ++++--- l10n/nn_NO/files.po | 30 ++++--- l10n/oc/files.po | 30 ++++--- l10n/pl/files.po | 32 ++++--- l10n/pl_PL/files.po | 30 ++++--- l10n/pt_BR/files.po | 30 ++++--- l10n/pt_PT/files.po | 30 ++++--- l10n/ro/core.po | 73 +++++++-------- l10n/ro/files.po | 30 ++++--- l10n/ro/settings.po | 43 ++++----- l10n/ru/files.po | 32 ++++--- l10n/ru_RU/files.po | 32 ++++--- l10n/ru_RU/settings.po | 34 +++---- l10n/sk_SK/files.po | 30 ++++--- l10n/sl/files.po | 32 ++++--- l10n/sl/files_versions.po | 10 +-- l10n/sl/settings.po | 14 +-- l10n/so/files.po | 30 ++++--- l10n/sr/files.po | 30 ++++--- l10n/sr@latin/files.po | 30 ++++--- l10n/sv/files.po | 32 ++++--- l10n/sv/files_versions.po | 10 +-- l10n/sv/settings.po | 14 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 16 +++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 32 ++++--- l10n/th_TH/files_versions.po | 10 +-- l10n/th_TH/settings.po | 14 +-- l10n/tr/files.po | 30 ++++--- l10n/uk/files.po | 30 ++++--- l10n/vi/files.po | 32 ++++--- l10n/zh_CN.GB2312/core.po | 39 ++++---- l10n/zh_CN.GB2312/files.po | 41 +++++---- l10n/zh_CN.GB2312/files_encryption.po | 17 ++-- l10n/zh_CN.GB2312/files_external.po | 41 ++++----- l10n/zh_CN.GB2312/files_sharing.po | 21 ++--- l10n/zh_CN.GB2312/files_versions.po | 17 ++-- l10n/zh_CN.GB2312/lib.po | 99 +++++++++++---------- l10n/zh_CN.GB2312/settings.po | 55 ++++++------ l10n/zh_CN.GB2312/user_ldap.po | 79 ++++++++-------- l10n/zh_CN/files.po | 32 ++++--- l10n/zh_CN/files_versions.po | 10 +-- l10n/zh_CN/settings.po | 14 +-- l10n/zh_TW/files.po | 30 ++++--- lib/l10n/de.php | 4 +- lib/l10n/zh_CN.GB2312.php | 28 ++++++ settings/l10n/cs_CZ.php | 3 + settings/l10n/de.php | 5 +- settings/l10n/el.php | 24 ++++- settings/l10n/es.php | 2 + settings/l10n/it.php | 3 + settings/l10n/ro.php | 17 ++++ settings/l10n/ru_RU.php | 13 +++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 3 + settings/l10n/th_TH.php | 3 + settings/l10n/zh_CN.GB2312.php | 23 +++++ settings/l10n/zh_CN.php | 3 + 140 files changed, 1920 insertions(+), 1159 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_CN.GB2312.php create mode 100644 apps/files_external/l10n/zh_CN.GB2312.php create mode 100644 apps/files_sharing/l10n/zh_CN.GB2312.php create mode 100644 apps/files_versions/l10n/zh_CN.GB2312.php create mode 100644 apps/user_ldap/l10n/zh_CN.GB2312.php create mode 100644 lib/l10n/zh_CN.GB2312.php diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9f311c6b28..5b9f11814c 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", "Files" => "Αρχεία", +"Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", "already exists" => "υπάρχει ήδη", "replace" => "αντικατέστησε", +"suggest name" => "συνιστώμενο όνομα", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", "undo" => "αναίρεση", "with" => "με", +"unshared" => "Διακόπηκε η κοινή χρήση", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Μεταφόρτωσης", "Pending" => "Εν αναμονή", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", "0 is unlimited" => "0 για απεριόριστο", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", +"Save" => "Αποθήκευση", "New" => "Νέο", "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 42063712ea..846f4234de 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "丢失了一个临时文件夹", "Failed to write to disk" => "写磁盘失败", "Files" => "文件", +"Unshare" => "取消共享", "Delete" => "删除", "already exists" => "已经存在了", "replace" => "替换", +"suggest name" => "推荐名称", "cancel" => "取消", "replaced" => "替换过了", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消共享", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Upload Error" => "上传错误", "Pending" => "Pending", "Upload cancelled." => "上传取消了", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "支持ZIP下载", "0 is unlimited" => "0是无限的", "Maximum input size for ZIP files" => "最大的ZIP文件输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文档", "Folder" => "文件夹", diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..297444fcf5 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -0,0 +1,6 @@ + "加密", +"Exclude the following file types from encryption" => "从加密中排除如下文件类型", +"None" => "无", +"Enable Encryption" => "启用加密" +); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 7dcf13b397..3de151eb75 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,10 +1,18 @@ "Εξωτερική αποθήκευση", +"External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", +"Backend" => "Σύστημα υποστήριξης", "Configuration" => "Ρυθμίσεις", "Options" => "Επιλογές", +"Applicable" => "Εφαρμόσιμο", +"Add mount point" => "Προσθήκη σημείου προσάρτησης", +"None set" => "Κανένα επιλεγμένο", "All Users" => "Όλοι οι χρήστες", "Groups" => "Ομάδες", "Users" => "Χρήστες", -"Delete" => "Διαγραφή" +"Delete" => "Διαγραφή", +"SSL root certificates" => "Πιστοποιητικά SSL root", +"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root", +"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", +"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" ); diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..6a6d1c6d12 --- /dev/null +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -0,0 +1,18 @@ + "外部存储", +"Mount point" => "挂载点", +"Backend" => "后端", +"Configuration" => "配置", +"Options" => "选项", +"Applicable" => "可应用", +"Add mount point" => "添加挂载点", +"None set" => "未设置", +"All Users" => "所有用户", +"Groups" => "群组", +"Users" => "用户", +"Delete" => "删除", +"SSL root certificates" => "SSL 根证书", +"Import Root Certificate" => "导入根证书", +"Enable User External Storage" => "启用用户外部存储", +"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储" +); diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 123a008e55..3406c508e6 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,4 +1,7 @@ "Συνθηματικό", -"Submit" => "Καταχώρηση" +"Submit" => "Καταχώρηση", +"Download" => "Λήψη", +"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας" ); diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..fdde2c641f --- /dev/null +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "密码", +"Submit" => "提交", +"Download" => "下载", +"No preview available for" => "没有预览可用于", +"web services under your control" => "您控制的网络服务" +); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 5d19f59d70..c99c4a27e8 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,5 +1,7 @@ "Vypršet všechny verze", "Versions" => "Verze", -"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů" +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", +"Files Versioning" => "Verzování souborů", +"Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 079d96e679..235e31aedf 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,5 +1,7 @@ "Alle Versionen löschen", "Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", +"Files Versioning" => "Dateiversionierung", +"Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index c26ad806bb..24511f3739 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,3 +1,7 @@ "Λήξη όλων των εκδόσεων" +"Expire all versions" => "Λήξη όλων των εκδόσεων", +"Versions" => "Εκδόσεις", +"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", +"Files Versioning" => "Εκδόσεις Αρχείων", +"Enable" => "Ενεργοποίηση" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 1acab15299..cff15bce43 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,7 @@ "Expirar todas las versiones", "Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", +"Files Versioning" => "Versionado de archivos", +"Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 2b7d2b5c13..59f7e759b1 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,5 +1,7 @@ "Scadenza di tutte le versioni", "Versions" => "Versioni", -"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file" +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", +"Files Versioning" => "Controllo di versione dei file", +"Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index 8c67b56883..9984bcb5e8 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,5 +1,7 @@ "Zastaraj vse različice", "Versions" => "Različice", -"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", +"Files Versioning" => "Sledenje različicam", +"Enable" => "Omogoči" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 16fd9890bf..218bd6ee2e 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,5 +1,7 @@ "Upphör alla versioner", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", +"Files Versioning" => "Versionshantering av filer", +"Enable" => "Aktivera" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 5e075d54a7..62ab0548f4 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,5 +1,7 @@ "หมดอายุทุกรุ่น", "Versions" => "รุ่น", -"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", +"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์", +"Enable" => "เปิดใช้งาน" ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..43af097a21 --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "作废所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", +"Files Versioning" => "文件版本", +"Enable" => "启用" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index ba2ea40df9..1a5caae7df 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,5 +1,7 @@ "过期所有版本", "Versions" => "版本", -"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本" +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Files Versioning" => "文件版本", +"Enable" => "开启" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 2c178d0b4f..df67671179 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -24,7 +24,7 @@ "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..8b906aea5c --- /dev/null +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -0,0 +1,37 @@ + "主机", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头", +"Base DN" => "基本判别名", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名", +"User DN" => "用户判别名", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。", +"Password" => "密码", +"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。", +"User Login Filter" => "用户登录过滤器", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "使用 %%uid 占位符,例如 \"uid=%%uid\"", +"User List Filter" => "用户列表过滤器", +"Defines the filter to apply, when retrieving users." => "定义撷取用户时要应用的过滤器。", +"without any placeholder, e.g. \"objectClass=person\"." => "不能使用占位符,例如 \"objectClass=person\"。", +"Group Filter" => "群组过滤器", +"Defines the filter to apply, when retrieving groups." => "定义撷取群组时要应用的过滤器", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "不能使用占位符,例如 \"objectClass=posixGroup\"。", +"Port" => "端口", +"Base User Tree" => "基本用户树", +"Base Group Tree" => "基本群组树", +"Group-Member association" => "群组-成员组合", +"Use TLS" => "使用 TLS", +"Do not use it for SSL connections, it will fail." => "不要使用它进行 SSL 连接,会失败的。", +"Case insensitve LDAP server (Windows)" => "大小写不敏感的 LDAP 服务器 (Windows)", +"Turn off SSL certificate validation." => "关闭 SSL 证书校验。", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。", +"Not recommended, use for testing only." => "不推荐,仅供测试", +"User Display Name Field" => "用户显示名称字段", +"The LDAP attribute to use to generate the user`s ownCloud name." => "用于生成用户的 ownCloud 名称的 LDAP 属性。", +"Group Display Name Field" => "群组显示名称字段", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "用于生成群组的 ownCloud 名称的 LDAP 属性。", +"in bytes" => "以字节计", +"in seconds. A change empties the cache." => "以秒计。修改会清空缓存。", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。", +"Help" => "帮助" +); diff --git a/core/l10n/de.php b/core/l10n/de.php index 611c208fe4..bcc0449640 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,5 @@ "Applikationsname nicht angegeben", +"Application name not provided." => "Anwendungsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", "Settings" => "Einstellungen", diff --git a/core/l10n/el.php b/core/l10n/el.php index 18a26f892c..227e981f2b 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -50,6 +50,7 @@ "Database user" => "Χρήστης της βάσης δεδομένων", "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων", "Database name" => "Όνομα βάσης δεδομένων", +"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 484a47727d..9ec6a048fc 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -3,6 +3,24 @@ "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: " => "Această categorie deja există:", "Settings" => "Configurări", +"January" => "Ianuarie", +"February" => "Februarie", +"March" => "Martie", +"April" => "Aprilie", +"May" => "Mai", +"June" => "Iunie", +"July" => "Iulie", +"August" => "August", +"September" => "Septembrie", +"October" => "Octombrie", +"November" => "Noiembrie", +"December" => "Decembrie", +"Cancel" => "Anulare", +"No" => "Nu", +"Yes" => "Da", +"Ok" => "Ok", +"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.", +"Error" => "Eroare", "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 58104df399..e59a935f39 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库用户名", +"Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", diff --git a/l10n/af/files.po b/l10n/af/files.po index 6cd6b21cef..a16e059df3 100644 --- a/l10n/af/files.po +++ b/l10n/af/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 7221caf070..18222f6892 100644 --- a/l10n/ar/files.po +++ b/l10n/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "حجم" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "معدل" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 8651ddd072..7e240be4fa 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index f1667a2327..f6587e5c34 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 09799489c8..214a4c9125 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 07:25+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfés" @@ -90,11 +90,11 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "No compartits" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "esborrat" @@ -127,27 +127,35 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxer" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxers" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8da1d5687e..fe8d0af8aa 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 10:25+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "zpět" @@ -90,11 +90,11 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "sdílení zrušeno" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "smazáno" @@ -127,27 +127,35 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Změněno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "složka" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "složky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "soubor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 62610aa876..61b1531b7e 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:45+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,8 +33,8 @@ msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Verzování souborů" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Povolit" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 4e8e8e7dca..eb866f0582 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:48+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Nelze povolit aplikaci." @@ -121,7 +121,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:43 msgid "" @@ -133,11 +133,11 @@ msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Sdílení" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/da/files.po b/l10n/da/files.po index 98943475b5..8059cf0e9e 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:23+0000\n" -"Last-Translator: osos \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +85,7 @@ msgstr "fortryd" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "fortryd" @@ -93,11 +93,11 @@ msgstr "fortryd" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "udelt" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "Slettet" @@ -130,27 +130,35 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ændret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index ee93387e05..0f9a95fa25 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -8,6 +8,7 @@ # , 2011. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 18:13+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:28+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Applikationsname nicht angegeben" +msgstr "Anwendungsname nicht angegeben" #: ajax/vcategories/add.php:29 msgid "No category to add?" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5a9037efcd..89c0f6c40f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 23:04+0000\n" -"Last-Translator: fmms \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,7 +92,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "rückgängig machen" @@ -100,11 +100,11 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Nicht mehr teilen" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "gelöscht" @@ -137,6 +137,14 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + #: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Größe" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 2cfa07980b..acda1c165a 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,15 +4,16 @@ # # Translators: # I Robot , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:25+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,8 +35,8 @@ msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Dateiversionierung" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivieren" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index b43e2799fd..e066695345 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,37 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:07+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 21:03+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hilfe" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Persönlich" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Einstellungen" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Benutzer" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Administrator" @@ -72,45 +72,45 @@ msgstr "Authentifizierungs-Fehler" msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "Vor wenigen Sekunden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgstr "Vor %d Minute(n)" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "Heute" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "Gestern" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "Vor %d Tagen" +msgstr "Vor %d Tag(en)" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Letzten Monat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "Vor Monaten" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Letztes Jahr" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9aefe033b0..88ca1c44b7 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:24+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +46,7 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "App konnte nicht aktiviert werden." @@ -127,7 +127,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Führe eine Aufgabe pro geladener Seite aus." #: templates/admin.php:43 msgid "" @@ -139,11 +139,11 @@ msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite c msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Freigabe" #: templates/admin.php:61 msgid "Enable Share API" @@ -245,7 +245,7 @@ msgstr "der verfügbaren" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop- und mobile Synchronierungs-Clients" +msgstr "Desktop- und mobile Clients für die Synchronisation" #: templates/personal.php:13 msgid "Download" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c8b3a60d6a..951faf6839 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 15:48+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:49+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -134,7 +134,7 @@ msgstr "Schalte die SSL-Zertifikatsprüfung aus." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/el/core.po b/l10n/el/core.po index 0a9a6e0388..babcd9f4e8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -4,6 +4,7 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # , 2011. # Petros Kyladitis , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:33+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,55 +34,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "Μάρτιος" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "Απρίλιος" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "Μάϊος" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "Ιούνιος" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "Ιούλιος" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "Αύγουστος" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "Δεκέμβριος" @@ -229,7 +230,7 @@ msgstr "Όνομα βάσης δεδομένων" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Κενά Πινάκων Βάσης Δεδομένων" #: templates/installation.php:115 msgid "Database host" @@ -239,11 +240,11 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 0daee77ea7..0912afaf79 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,14 +4,15 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -56,7 +57,7 @@ msgstr "Αρχεία" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Διακοπή κοινής χρήσης" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -72,7 +73,7 @@ msgstr "αντικατέστησε" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "συνιστώμενο όνομα" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -82,7 +83,7 @@ msgstr "ακύρωση" msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "αναίρεση" @@ -90,11 +91,11 @@ msgstr "αναίρεση" msgid "with" msgstr "με" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "Διακόπηκε η κοινή χρήση" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "διαγράφηκε" @@ -121,33 +122,41 @@ msgstr "Η μεταφόρτωση ακυρώθηκε." #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση." #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "φάκελος" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "φάκελοι" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "αρχείο" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "αρχεία" @@ -181,7 +190,7 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" #: templates/index.php:7 msgid "New" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d11daf7f32..26acbf9da9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,25 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-27 02:01+0200\n" -"PO-Revision-Date: 2012-08-26 21:45+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:07+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "Εξωτερική αποθήκευση" +msgstr "Εξωτερικό Αποθηκευτικό Μέσο" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -29,7 +30,7 @@ msgstr "Σημείο προσάρτησης" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Σύστημα υποστήριξης" #: templates/settings.php:9 msgid "Configuration" @@ -41,15 +42,15 @@ msgstr "Επιλογές" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Εφαρμόσιμο" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Προσθήκη σημείου προσάρτησης" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Κανένα επιλεγμένο" #: templates/settings.php:63 msgid "All Users" @@ -69,16 +70,16 @@ msgstr "Διαγραφή" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Πιστοποιητικά SSL root" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Εισαγωγή Πιστοποιητικού Root" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index fafebf4944..01a1f99bd9 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,20 +4,21 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:13+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -29,12 +30,12 @@ msgstr "Καταχώρηση" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Λήψη" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index a68447d08c..d6b4a6a230 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:10+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,16 +25,16 @@ msgstr "Λήξη όλων των εκδόσεων" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Εκδόσεις" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Εκδόσεις Αρχείων" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Ενεργοποίηση" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index fe7b0300c4..ba761612ae 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -4,19 +4,20 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # , 2012. # Marios Bekatoros <>, 2012. # Nisok Kosin , 2012. # , 2011. -# Petros Kyladitis , 2011, 2012. +# Petros Kyladitis , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:31+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,15 +36,15 @@ msgstr "Σφάλμα πιστοποίησης" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Η ομάδα υπάρχει ήδη" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Αδυναμία ενεργοποίησης εφαρμογής " #: ajax/lostpassword.php:14 msgid "Email saved" @@ -63,11 +64,11 @@ msgstr "Μη έγκυρο αίτημα" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Αδυναμία διαγραφής ομάδας" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Αδυναμία διαγραφής χρήστη" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -76,12 +77,12 @@ msgstr "Η γλώσσα άλλαξε" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" #: js/apps.js:18 msgid "Error" @@ -114,7 +115,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας." #: templates/admin.php:31 msgid "Cron" @@ -122,55 +123,55 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Διαμοιρασμός" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Ενεργοποίηση API Διαμοιρασμού" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Να επιτρέπονται σύνδεσμοι" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" #: templates/admin.php:88 msgid "Log" @@ -188,7 +189,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -204,7 +205,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-άδεια από " #: templates/help.php:9 msgid "Documentation" @@ -320,7 +321,7 @@ msgstr "Άλλα" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Διαχειρηστής ομάδας" +msgstr "Ομάδα Διαχειριστών" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d62532d142..9aa4aa30af 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:57+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "nuligi" msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "malfari" @@ -89,11 +89,11 @@ msgstr "malfari" msgid "with" msgstr "kun" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "malkunhavigita" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "forigita" @@ -126,27 +126,35 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Grando" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifita" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dosierujo" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dosierujoj" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosiero" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosieroj" diff --git a/l10n/es/files.po b/l10n/es/files.po index a50f0e53fd..5dffbb2efc 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 03:24+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "deshacer" @@ -91,11 +91,11 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "no compartido" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "borrado" @@ -128,27 +128,35 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "archivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index fa6563948b..ff439b9279 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:30+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,8 +34,8 @@ msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionado de archivos" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Habilitar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c8a6f5b67c..6657754d3c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:32+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "No puedo habilitar la app." @@ -125,7 +125,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" #: templates/admin.php:43 msgid "" @@ -141,7 +141,7 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Compartir" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index a2e851dd2f..047952b5cf 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 10:21+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "loobu" msgid "replaced" msgstr "asendatud" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "tagasi" @@ -88,11 +88,11 @@ msgstr "tagasi" msgid "with" msgstr "millega" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "jagamata" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "kustutatud" @@ -125,27 +125,35 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesl msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Suurus" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muudetud" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kaust" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kausta" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2cd338beb7..c90216557e 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 19:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "ezeztatu" msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desegin" @@ -89,11 +89,11 @@ msgstr "desegin" msgid "with" msgstr "honekin" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ez partekatuta" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ezabatuta" @@ -126,27 +126,35 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "karpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Karpetak" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxategia" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 0b6110c70d..24b986c040 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 37b2cc70c3..d189e3addf 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "لغو" msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "بازگشت" @@ -90,11 +90,11 @@ msgstr "بازگشت" msgid "with" msgstr "همراه" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "حذف شده" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "اندازه" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "پوشه" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "پوشه ها" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "پرونده" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 1d569839df..6326b9d2c5 100644 --- a/l10n/fi/files.po +++ b/l10n/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c642c07ab8..3f9eec5f1c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "kumoa" @@ -92,11 +92,11 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "poistettu" @@ -129,27 +129,35 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muutettu" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kansio" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kansiota" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "tiedosto" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 07b8735002..6d8496dc83 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 16:41+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +88,7 @@ msgstr "annuler" msgid "replaced" msgstr "remplacé" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annuler" @@ -96,11 +96,11 @@ msgstr "annuler" msgid "with" msgstr "avec" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "non partagée" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "supprimé" @@ -133,27 +133,35 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Taille" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifié" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dossiers" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fichier" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fichiers" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index f51ab64695..cd392ff6bc 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituído" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfacer" @@ -89,11 +89,11 @@ msgstr "desfacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminado" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartafol" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartafoles" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/he/files.po b/l10n/he/files.po index 1c6d3f8f90..5a7931d12a 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" -"PO-Revision-Date: 2012-09-14 03:53+0000\n" -"Last-Translator: Dovix Dovix \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -128,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "גודל" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "תקיה" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "תקיות" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "קובץ" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "קבצים" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 238575d5e4..276a0baded 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c7d3870a5a..00012d604e 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "odustani" msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vrati" @@ -90,11 +90,11 @@ msgstr "vrati" msgid "with" msgstr "sa" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 09722e3871..b8ea72acba 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "mégse" msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "visszavon" @@ -90,11 +90,11 @@ msgstr "visszavon" msgid "with" msgstr "-val/-vel" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "törölve" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Méret" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Módosítva" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappák" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fájl" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fájlok" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 9a144a8130..38dddfc1bd 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index cdce2e1a66..6b931f1c7d 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimension" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificate" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9479165468..bde4915a6e 100644 --- a/l10n/id/files.po +++ b/l10n/id/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "batalkan" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "batal dikerjakan" @@ -90,11 +90,11 @@ msgstr "batal dikerjakan" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Ukuran" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folder-folder" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "berkas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index 813b83410c..1ec81ead78 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 0c00e3d9e9..1fbe4da1d4 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:13+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annulla" @@ -91,11 +91,11 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "condivisione rimossa" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminati" @@ -128,27 +128,35 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificato" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartella" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartelle" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "file" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 1b5c72695a..054ddeffa7 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:42+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Controllo di versione dei file" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Abilita" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 65b4ad108b..f63eb7de50 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:51+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Impossibile abilitare l'applicazione." @@ -122,7 +122,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Esegui un'operazione per ogni pagina caricata" #: templates/admin.php:43 msgid "" @@ -134,11 +134,11 @@ msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Condivisione" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 6e3d70c125..18748ab64d 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 05:11+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "キャンセル" msgid "replaced" msgstr "置換:" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "元に戻す" @@ -89,11 +89,11 @@ msgstr "元に戻す" msgid "with" msgstr "←" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "未共有" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "削除" @@ -126,27 +126,35 @@ msgstr "ファイル転送を実行中です。今このページから移動す msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "サイズ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "更新日時" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "フォルダ" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "フォルダ" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ファイル" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ファイル" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 7167506ae4..7aff85c9a0 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "취소" msgid "replaced" msgstr "대체됨" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "복구" @@ -89,11 +89,11 @@ msgstr "복구" msgid "with" msgstr "와" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "삭제" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "크기" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "수정됨" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "폴더" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "폴더" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "파일" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "파일" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 6e4157f7be..d4497fcb9d 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "ofbriechen" msgid "replaced" msgstr "ersat" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "réckgängeg man" @@ -88,11 +88,11 @@ msgstr "réckgängeg man" msgid "with" msgstr "mat" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "geläscht" @@ -125,27 +125,35 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Gréisst" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Geännert" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "Dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Dossieren" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "Dateien" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index d4a5701df7..8979c3ef0c 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "atšaukti" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dydis" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Pakeista" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "katalogas" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "katalogai" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "failas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "failai" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 4adbfa4bf0..71e8a9a6f0 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "atcelt" msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vienu soli atpakaļ" @@ -88,11 +88,11 @@ msgstr "vienu soli atpakaļ" msgid "with" msgstr "ar" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izdzests" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Izmērs" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mape" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fails" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 7793167ca3..6e73a80e85 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Големина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променето" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "фолдер" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "фолдери" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "датотека" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "датотеки" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index e429d35b82..a90cf2c201 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Batal" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -128,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Saiz" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "direktori" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "direktori" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fail" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 8366b5c7be..43fafa1dd2 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "angre" @@ -93,11 +93,11 @@ msgstr "angre" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "slettet" @@ -130,27 +130,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 0a77bef234..133873f11c 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 07:08+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +88,7 @@ msgstr "annuleren" msgid "replaced" msgstr "vervangen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ongedaan maken" @@ -96,11 +96,11 @@ msgstr "ongedaan maken" msgid "with" msgstr "door" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "niet gedeeld" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "verwijderd" @@ -133,27 +133,35 @@ msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "map" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappen" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "bestand" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "bestanden" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index f473b58ff4..1de3b2cbbe 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storleik" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endra" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a6f4c0b62c..761048854c 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index bac8f89bee..823ad032e5 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 12:39+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +84,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "wróć" @@ -92,11 +92,11 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Nie udostępnione" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "skasuj" @@ -129,27 +129,35 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "foldery" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "plik" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "pliki" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6b1c826da5..b8b8ccd3d0 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index dba70ec6de..4d5887bf52 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido " -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -92,11 +92,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "deletado" @@ -129,27 +129,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "arquivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 874fc55cb8..adfb85dde4 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -90,11 +90,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "apagado" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 42e779595e..a1c262c007 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -6,13 +6,14 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:30+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,81 +33,81 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Configurări" -#: js/js.js:593 +#: js/js.js:642 msgid "January" -msgstr "" +msgstr "Ianuarie" -#: js/js.js:593 +#: js/js.js:642 msgid "February" -msgstr "" +msgstr "Februarie" -#: js/js.js:593 +#: js/js.js:642 msgid "March" -msgstr "" +msgstr "Martie" -#: js/js.js:593 +#: js/js.js:642 msgid "April" -msgstr "" +msgstr "Aprilie" -#: js/js.js:593 +#: js/js.js:642 msgid "May" -msgstr "" +msgstr "Mai" -#: js/js.js:593 +#: js/js.js:642 msgid "June" -msgstr "" +msgstr "Iunie" -#: js/js.js:594 +#: js/js.js:643 msgid "July" -msgstr "" +msgstr "Iulie" -#: js/js.js:594 +#: js/js.js:643 msgid "August" -msgstr "" +msgstr "August" -#: js/js.js:594 +#: js/js.js:643 msgid "September" -msgstr "" +msgstr "Septembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "October" -msgstr "" +msgstr "Octombrie" -#: js/js.js:594 +#: js/js.js:643 msgid "November" -msgstr "" +msgstr "Noiembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "December" -msgstr "" +msgstr "Decembrie" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulare" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nu" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Da" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Nici o categorie selectată pentru ștergere." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Eroare" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -238,11 +239,11 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a1551d7f5c..bbdcca021c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensiune" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index bf628a0ea6..5e814151bf 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,16 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:42+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,15 +34,15 @@ msgstr "Eroare de autentificare" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupul există deja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Nu s-a putut activa aplicația." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -61,11 +62,11 @@ msgstr "Cerere eronată" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nu s-a putut șterge grupul" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nu s-a putut șterge utilizatorul" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -74,12 +75,12 @@ msgstr "Limba a fost schimbată" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nu s-a putut elimina utilizatorul din grupul %s" #: js/apps.js:18 msgid "Error" @@ -112,7 +113,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." #: templates/admin.php:31 msgid "Cron" @@ -136,19 +137,19 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Partajare" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Activare API partajare" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permite aplicațiilor să folosească API-ul de partajare" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Pemite legături" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" @@ -156,7 +157,7 @@ msgstr "" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Permite repartajarea" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -164,11 +165,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permite utilizatorilor să partajeze cu oricine" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" #: templates/admin.php:88 msgid "Log" @@ -186,7 +187,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -202,7 +203,7 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licențiat " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 234fbe404e..120ca926c5 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 14:18+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgstr "отмена" msgid "replaced" msgstr "заменён" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "отмена" @@ -94,11 +94,11 @@ msgstr "отмена" msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "публикация отменена" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "удален" @@ -131,27 +131,35 @@ msgstr "Файл в процессе загрузки. Покинув стран msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Изменён" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a3844380e8..dc79d635c5 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 10:17+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "отменить" msgid "replaced" msgstr "заменено" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "отменить действие" @@ -88,11 +88,11 @@ msgstr "отменить действие" msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "скрытый" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "удалено" @@ -125,27 +125,35 @@ msgstr "Процесс загрузки файла. Если покинуть с msgid "Invalid name, '/' is not allowed." msgstr "Неправильное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Изменен" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 851ca47160..b8db330381 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:10+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +35,9 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Не удалось запустить приложение" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -108,7 +108,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера." #: templates/admin.php:31 msgid "Cron" @@ -116,23 +116,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Выполняйте одну задачу на каждой загружаемой странице" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Совместное использование" #: templates/admin.php:61 msgid "Enable Share API" @@ -140,7 +140,7 @@ msgstr "Включить разделяемые API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Разрешить приложениям использовать Share API" #: templates/admin.php:67 msgid "Allow links" @@ -152,7 +152,7 @@ msgstr "" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Разрешить повторное совместное использование" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -160,11 +160,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Разрешить пользователям разделение с кем-либо" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Разрешить пользователям разделение только с пользователями в их группах" #: templates/admin.php:88 msgid "Log" @@ -182,7 +182,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Разработанный ownCloud community, the source code is licensed under the AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -214,7 +214,7 @@ msgstr "Задать вопрос" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Проблемы, связанные с разделом Помощь базы данных" #: templates/help.php:24 msgid "Go there manually." @@ -314,7 +314,7 @@ msgstr "Другой" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Группа Admin" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a9285f4547..9730f5a8e9 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veľkosť" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Upravené" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "priečinok" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "priečinky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "súbor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "súbory" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 4f9fad5d5f..f694090216 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:24+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "razveljavi" @@ -90,11 +90,11 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "odstranjeno iz souporabe" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 80cae06ea8..716e97cbbd 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:09+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datote #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Sledenje različicam" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Omogoči" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1f1dabc9e6..729ff8c04d 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:14+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Aplikacije ni bilo mogoče omogočiti." @@ -118,7 +118,7 @@ msgstr "Periodično opravilo" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Izvede eno opravilo z vsako naloženo stranjo." #: templates/admin.php:43 msgid "" @@ -130,11 +130,11 @@ msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za period msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Souporaba" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/so/files.po b/l10n/so/files.po index f168f0b775..331c5b9de8 100644 --- a/l10n/so/files.po +++ b/l10n/so/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 8874f6a4db..f047ac6ad4 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Величина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Задња измена" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 11f37da7d1..d99ba6a880 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 53d2e5a81a..510ec25e91 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 12:05+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ångra" @@ -93,11 +93,11 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ej delad" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "raderad" @@ -130,27 +130,35 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ändrad" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapp" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappar" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 0dab4ba976..f78979b79a 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:33+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionshantering av filer" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivera" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b079b0d28f..acbae422b2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:31+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Kunde inte aktivera appen." @@ -122,7 +122,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Exekvera en uppgift vid varje sidladdning" #: templates/admin.php:43 msgid "" @@ -134,11 +134,11 @@ msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Dela" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e33dd23fde..a2ca834734 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b1aa09a252..670af957c7 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,6 +124,14 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + #: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0df6985522..b2b36ec7a0 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8d42a6afa7..17df827012 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 35dd588cbf..ce17ba853f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b1b3317462..6c86a3725f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9ac5f5f69f..3f9e5f57f2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 98e8f618fd..c0c8b14a7e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6c8fec9d6a..97fbced0ff 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 1ade0abea9..81201d846b 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 03:31+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "เลิกทำ" @@ -89,11 +89,11 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "ยกเลิกการแชร์ข้อมูลแล้ว" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ลบแล้ว" @@ -126,27 +126,35 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ไฟล์" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 2c49fa9e76..aa1ceaf157 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:39+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นท #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "การกำหนดเวอร์ชั่นของไฟล์" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "เปิดใช้งาน" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1abfb4ff29..bc06688343 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:37+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "ไม่สามารถเปิดใช้งานแอปได้" @@ -118,7 +118,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" #: templates/admin.php:43 msgid "" @@ -130,11 +130,11 @@ msgstr "cron.php ได้รับการลงทะเบียนแล้ msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "การแชร์ข้อมูล" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c0a9c6b876..5eba75eccb 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "iptal" msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "geri al" @@ -91,11 +91,11 @@ msgstr "geri al" msgid "with" msgstr "ile" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "silindi" @@ -128,27 +128,35 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Boyut" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dizin" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dizinler" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosya" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosyalar" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f81ff99674..a83100498c 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "відмінити" @@ -89,11 +89,11 @@ msgstr "відмінити" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "видалені" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Розмір" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Змінено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "тека" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "теки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файли" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 451fc69587..8c98054155 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 09:22+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "hủy" msgid "replaced" msgstr "đã được thay thế" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "lùi lại" @@ -89,11 +89,11 @@ msgstr "lùi lại" msgid "with" msgstr "với" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "đã xóa" @@ -126,27 +126,35 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folders" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "files" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 1993d8aed9..b5a49cd5b2 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:26+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +31,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "设置" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "十二月" @@ -226,7 +227,7 @@ msgstr "数据库用户名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表格空间" #: templates/installation.php:115 msgid "Database host" @@ -236,11 +237,11 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 27fb4d0b39..bbf13e6f0f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -54,7 +55,7 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消共享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -70,7 +71,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "推荐名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +81,7 @@ msgstr "取消" msgid "replaced" msgstr "替换过了" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -88,11 +89,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "已取消共享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "删除" @@ -119,33 +120,41 @@ msgstr "上传取消了" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传。关闭页面会取消上传。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" @@ -179,7 +188,7 @@ msgstr "最大的ZIP文件输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 2073826c24..eb4ddd9c54 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "从加密中排除如下文件类型" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "无" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "启用加密" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27dfa58801..4573b7bbdd 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:25+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "挂载点" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "后端" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "配置" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "选项" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "可应用" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "添加挂载点" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "未设置" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "所有用户" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "群组" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "用户" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "删除" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "SSL 根证书" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "导入根证书" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "启用用户外部存储" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "允许用户挂载他们的外部存储" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 4fdcb4f36f..e7446b3059 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:46+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密码" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "提交" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "下载" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "没有预览可用于" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 82b317a32e..e2016da8c6 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,20 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "作废所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "这将删除所有您现有文件的备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "启用" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 541a462fb8..4eac71c656 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:19+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "帮助" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "私人" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "设置" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "用户" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "程序" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "管理员" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下载已关闭" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "需要逐个下载文件。" #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "返回到文件" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "选择的文件太大而不能生成 zip 文件。" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "应用未启用" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "验证错误" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "会话过期。请刷新页面。" #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "秒前" #: template.php:88 +msgid "1 minute ago" +msgstr "1 分钟前" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d 分钟前" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "今天" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "昨天" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d 天前" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "上个月" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "月前" #: template.php:97 +msgid "last year" +msgstr "去年" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 不可用。获知 详情" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新检测已禁用" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 247d5f6e3f..d6d1b69b01 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:24+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,15 +30,15 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "群组已存在" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "未能添加群组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "未能启用应用" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -57,11 +58,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "未能删除群组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "未能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +71,12 @@ msgstr "语言改变了" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "未能添加用户到群组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "未能将用户从群组 %s 移除" #: js/apps.js:18 msgid "Error" @@ -108,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:31 msgid "Cron" @@ -116,55 +117,55 @@ msgstr "定时" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "在每个页面载入时执行一项任务" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "启用分享 API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许应用使用分享 API" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "允许链接" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用链接与公众分享条目" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "允许重复分享" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户再次分享已经分享过的条目" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户与任何人分享" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "只允许用户与群组内用户分享" #: templates/admin.php:88 msgid "Log" @@ -182,7 +183,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" #: templates/apps.php:10 msgid "Add your App" @@ -198,7 +199,7 @@ msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "授权协议 " #: templates/help.php:9 msgid "Documentation" @@ -314,7 +315,7 @@ msgstr "其他的" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "群组管理员" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 67a667a8ee..119c718867 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -3,168 +3,169 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:39+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "主机" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "基本判别名" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "用户判别名" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "密码" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名访问请留空判别名和密码。" #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "用户登录过滤器" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。" #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "用户列表过滤器" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "定义撷取用户时要应用的过滤器。" #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=person\"。" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "群组过滤器" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "定义撷取群组时要应用的过滤器" #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "端口" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "基本用户树" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "基本群组树" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "群组-成员组合" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "使用 TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "不要使用它进行 SSL 连接,会失败的。" #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "大小写不敏感的 LDAP 服务器 (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "关闭 SSL 证书校验。" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推荐,仅供测试" #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "用户显示名称字段" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "群组显示名称字段" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "以字节计" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒计。修改会清空缓存。" #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "帮助" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index d1329bec33..52e765ef10 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" -"PO-Revision-Date: 2012-09-15 14:55+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -90,11 +90,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "已取消分享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "已经删除" @@ -127,27 +127,35 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index d55e6f8112..157efc0c27 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 16:01+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "开启" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8719804427..84ab4991d1 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:59+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,7 @@ msgstr "已存在组" msgid "Unable to add group" msgstr "不能添加组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "无法开启App" @@ -119,7 +119,7 @@ msgstr "计划任务" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "每次页面加载完成后执行任务" #: templates/admin.php:43 msgid "" @@ -131,11 +131,11 @@ msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index b4564768b7..de69e6ab16 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳." msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 4a567003de..aea631aba2 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -14,10 +14,10 @@ "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", -"%d minutes ago" => "Vor %d Minuten", +"%d minutes ago" => "Vor %d Minute(n)", "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tagen", +"%d days ago" => "Vor %d Tag(en)", "last month" => "Letzten Monat", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..4b0a5e9f4d --- /dev/null +++ b/lib/l10n/zh_CN.GB2312.php @@ -0,0 +1,28 @@ + "帮助", +"Personal" => "私人", +"Settings" => "设置", +"Users" => "用户", +"Apps" => "程序", +"Admin" => "管理员", +"ZIP download is turned off." => "ZIP 下载已关闭", +"Files need to be downloaded one by one." => "需要逐个下载文件。", +"Back to Files" => "返回到文件", +"Selected files too large to generate zip file." => "选择的文件太大而不能生成 zip 文件。", +"Application is not enabled" => "应用未启用", +"Authentication error" => "验证错误", +"Token expired. Please reload page." => "会话过期。请刷新页面。", +"seconds ago" => "秒前", +"1 minute ago" => "1 分钟前", +"%d minutes ago" => "%d 分钟前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上个月", +"months ago" => "月前", +"last year" => "去年", +"years ago" => "年前", +"%s is available. Get more information" => "%s 不可用。获知 详情", +"up to date" => "最新", +"updates check is disabled" => "更新检测已禁用" +); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 382c2e75b3..09859cd3c5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,7 +21,10 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.", +"Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 83a57cc196..a450b60b7b 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -21,7 +21,10 @@ "Security Warning" => "Sicherheitshinweis", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", @@ -45,7 +48,7 @@ "Answer" => "Antwort", "You use" => "Sie nutzen", "of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", "Download" => "Download", "Your password got changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 075734fb5f..8dba78c858 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,23 +1,45 @@ "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", +"Group already exists" => "Η ομάδα υπάρχει ήδη", +"Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το Email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Unable to delete group" => "Αδυναμία διαγραφής ομάδας", +"Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", +"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", +"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Error" => "Σφάλμα", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", +"Sharing" => "Διαμοιρασμός", +"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", +"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", +"Allow links" => "Να επιτρέπονται σύνδεσμοι", +"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους", +"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", +"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", +"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", +"Allow users to only share with users in their groups" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"-licensed by " => "-άδεια από ", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", @@ -46,7 +68,7 @@ "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο όριο", "Other" => "Άλλα", -"Group Admin" => "Διαχειρηστής ομάδας", +"Group Admin" => "Ομάδα Διαχειριστών", "Quota" => "Σύνολο χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index c939399494..c71a6057b9 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -21,7 +21,9 @@ "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", +"Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 6359655b55..ae6999675b 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -21,7 +21,10 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.", +"Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index e072daa991..d4b8c1651c 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,23 +1,40 @@ "Imposibil de încărcat lista din App Store", "Authentication error" => "Eroare de autentificare", +"Group already exists" => "Grupul există deja", +"Unable to add group" => "Nu s-a putut adăuga grupul", +"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Unable to delete group" => "Nu s-a putut șterge grupul", +"Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", +"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", +"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Error" => "Erroare", "Disable" => "Dezactivați", "Enable" => "Activați", "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Cron" => "Cron", +"Sharing" => "Partajare", +"Enable Share API" => "Activare API partajare", +"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", +"Allow links" => "Pemite legături", +"Allow resharing" => "Permite repartajarea", +"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", +"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Log" => "Jurnal de activitate", "More" => "Mai mult", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL.", "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", +"-licensed by " => "-licențiat ", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 2b7400968a..edf315db7c 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -3,6 +3,7 @@ "Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", "OpenID Changed" => "OpenID изменен", @@ -18,11 +19,21 @@ "Saving..." => "Сохранение", "__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Совместное использование", "Enable Share API" => "Включить разделяемые API", +"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API", "Allow links" => "Предоставить ссылки", +"Allow resharing" => "Разрешить повторное совместное использование", +"Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо", +"Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах", "Log" => "Вход", "More" => "Подробнее", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Add your App" => "Добавить Ваше приложение", "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", @@ -30,6 +41,7 @@ "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", +"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", "Go there manually." => "Сделать вручную.", "Answer" => "Ответ", "You use" => "Вы используете", @@ -54,6 +66,7 @@ "Create" => "Создать", "Default Quota" => "Квота по умолчанию", "Other" => "Другой", +"Group Admin" => "Группа Admin", "Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b15a70aef1..6e3cd22ce0 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -21,7 +21,10 @@ "Security Warning" => "Varnostno opozorilo", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", +"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 8886502044..c944cd0993 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -21,7 +21,10 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.", +"Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 074c8128b4..128e548cc9 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -21,7 +21,10 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", +"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", +"Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 83111beb10..760336c932 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,23 +1,45 @@ "不能从App Store 中加载列表", "Authentication error" => "认证错误", +"Group already exists" => "群组已存在", +"Unable to add group" => "未能添加群组", +"Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", +"Unable to delete group" => "未能删除群组", +"Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", +"Unable to add user to group %s" => "未能添加用户到群组 %s", +"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "保存中...", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。", "Cron" => "定时", +"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", +"Sharing" => "分享", +"Enable Share API" => "启用分享 API", +"Allow apps to use the Share API" => "允许应用使用分享 API", +"Allow links" => "允许链接", +"Allow users to share items to the public with links" => "允许用户使用链接与公众分享条目", +"Allow resharing" => "允许重复分享", +"Allow users to share items shared with them again" => "允许用户再次分享已经分享过的条目", +"Allow users to share with anyone" => "允许用户与任何人分享", +"Allow users to only share with users in their groups" => "只允许用户与群组内用户分享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", +"-licensed by " => "授权协议 ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", @@ -46,6 +68,7 @@ "Create" => "新建", "Default Quota" => "默认限额", "Other" => "其他的", +"Group Admin" => "群组管理员", "Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 89115f6c7c..13f2f38925 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,7 +21,10 @@ "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", +"Execute one task with each page loaded" => "每次页面加载完成后执行任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "分享", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接",